home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / gdb-4.12 / gdb / symtab.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-03  |  87.7 KB  |  3,203 lines

  1. /* Symbol table lookup for the GNU debugger, GDB.
  2.    Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
  3.              Free Software Foundation, Inc.
  4.  
  5. This file is part of GDB.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "defs.h"
  22. #include "symtab.h"
  23. #include "gdbtypes.h"
  24. #include "gdbcore.h"
  25. #include "frame.h"
  26. #include "target.h"
  27. #include "value.h"
  28. #include "symfile.h"
  29. #include "objfiles.h"
  30. #include "gdbcmd.h"
  31. #include "call-cmds.h"
  32. #include "regex.h"
  33. #include "expression.h"
  34. #include "language.h"
  35. #include "demangle.h"
  36.  
  37. #include <obstack.h>
  38. #include <assert.h>
  39.  
  40. #include <sys/types.h>
  41. #include <fcntl.h>
  42. #include <string.h>
  43. #include <sys/stat.h>
  44. #include <ctype.h>
  45.  
  46. /* Prototypes for local functions */
  47.  
  48. extern int
  49. find_methods PARAMS ((struct type *, char *, struct symbol **));
  50.  
  51. static void
  52. completion_list_add_name PARAMS ((char *, char *, int, char *, char *));
  53.  
  54. static void
  55. build_canonical_line_spec PARAMS ((struct symtab_and_line *, char *, char ***));
  56.  
  57. static struct symtabs_and_lines
  58. decode_line_2 PARAMS ((struct symbol *[], int, int, char ***));
  59.  
  60. static void
  61. rbreak_command PARAMS ((char *, int));
  62.  
  63. static void
  64. types_info PARAMS ((char *, int));
  65.  
  66. static void
  67. functions_info PARAMS ((char *, int));
  68.  
  69. static void
  70. variables_info PARAMS ((char *, int));
  71.  
  72. static void
  73. sources_info PARAMS ((char *, int));
  74.  
  75. static void
  76. list_symbols PARAMS ((char *, int, int));
  77.  
  78. static void
  79. output_source_filename PARAMS ((char *, int *));
  80.  
  81. static char *
  82. operator_chars PARAMS ((char *, char **));
  83.  
  84. static int find_line_common PARAMS ((struct linetable *, int, int *));
  85.  
  86. static struct partial_symbol *
  87. lookup_partial_symbol PARAMS ((struct partial_symtab *, const char *,
  88.                    int, enum namespace));
  89.  
  90. static struct symtab *
  91. lookup_symtab_1 PARAMS ((char *));
  92.  
  93. /* */
  94.  
  95. /* The single non-language-specific builtin type */
  96. struct type *builtin_type_error;
  97.  
  98. /* Block in which the most recently searched-for symbol was found.
  99.    Might be better to make this a parameter to lookup_symbol and 
  100.    value_of_this. */
  101.  
  102. const struct block *block_found;
  103.  
  104. char no_symtab_msg[] = "No symbol table is loaded.  Use the \"file\" command.";
  105.  
  106. /* While the C++ support is still in flux, issue a possibly helpful hint on
  107.    using the new command completion feature on single quoted demangled C++
  108.    symbols.  Remove when loose ends are cleaned up.   FIXME -fnf */
  109.  
  110. void
  111. cplusplus_hint (name)
  112.      char *name;
  113. {
  114.   printf_unfiltered ("Hint: try '%s<TAB> or '%s<ESC-?>\n", name, name);
  115.   printf_unfiltered ("(Note leading single quote.)\n");
  116. }
  117.  
  118. /* Check for a symtab of a specific name; first in symtabs, then in
  119.    psymtabs.  *If* there is no '/' in the name, a match after a '/'
  120.    in the symtab filename will also work.  */
  121.  
  122. static struct symtab *
  123. lookup_symtab_1 (name)
  124.      char *name;
  125. {
  126.   register struct symtab *s;
  127.   register struct partial_symtab *ps;
  128.   register char *slash;
  129.   register struct objfile *objfile;
  130.  
  131.  got_symtab:
  132.  
  133.   /* First, search for an exact match */
  134.  
  135.   ALL_SYMTABS (objfile, s)
  136.     if (STREQ (name, s->filename))
  137.       return s;
  138.  
  139.   slash = strchr (name, '/');
  140.  
  141.   /* Now, search for a matching tail (only if name doesn't have any dirs) */
  142.  
  143.   if (!slash)
  144.     ALL_SYMTABS (objfile, s)
  145.       {
  146.     char *p = s -> filename;
  147.     char *tail = strrchr (p, '/');
  148.  
  149.     if (tail)
  150.       p = tail + 1;
  151.  
  152.     if (STREQ (p, name))
  153.       return s;
  154.       }
  155.  
  156.   /* Same search rules as above apply here, but now we look thru the
  157.      psymtabs.  */
  158.  
  159.   ps = lookup_partial_symtab (name);
  160.   if (!ps)
  161.     return (NULL);
  162.  
  163.   if (ps -> readin)
  164.     error ("Internal: readin %s pst for `%s' found when no symtab found.",
  165.        ps -> filename, name);
  166.  
  167.   s = PSYMTAB_TO_SYMTAB (ps);
  168.  
  169.   if (s)
  170.     return s;
  171.  
  172.   /* At this point, we have located the psymtab for this file, but
  173.      the conversion to a symtab has failed.  This usually happens
  174.      when we are looking up an include file.  In this case,
  175.      PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
  176.      been created.  So, we need to run through the symtabs again in
  177.      order to find the file.
  178.      XXX - This is a crock, and should be fixed inside of the the
  179.      symbol parsing routines. */
  180.   goto got_symtab;
  181. }
  182.  
  183. /* Lookup the symbol table of a source file named NAME.  Try a couple
  184.    of variations if the first lookup doesn't work.  */
  185.  
  186. struct symtab *
  187. lookup_symtab (name)
  188.      char *name;
  189. {
  190.   register struct symtab *s;
  191.   register char *copy;
  192.  
  193.   s = lookup_symtab_1 (name);
  194.   if (s) return s;
  195.  
  196. #if 0
  197.   /* This screws c-exp.y:yylex if there is both a type "tree" and a symtab
  198.      "tree.c".  */
  199.  
  200.   /* If name not found as specified, see if adding ".c" helps.  */
  201.   /* Why is this?  Is it just a user convenience?  (If so, it's pretty
  202.      questionable in the presence of C++, FORTRAN, etc.).  It's not in
  203.      the GDB manual.  */
  204.  
  205.   copy = (char *) alloca (strlen (name) + 3);
  206.   strcpy (copy, name);
  207.   strcat (copy, ".c");
  208.   s = lookup_symtab_1 (copy);
  209.   if (s) return s;
  210. #endif /* 0 */
  211.  
  212.   /* We didn't find anything; die.  */
  213.   return 0;
  214. }
  215.  
  216. /* Lookup the partial symbol table of a source file named NAME.
  217.    *If* there is no '/' in the name, a match after a '/'
  218.    in the psymtab filename will also work.  */
  219.  
  220. struct partial_symtab *
  221. lookup_partial_symtab (name)
  222. char *name;
  223. {
  224.   register struct partial_symtab *pst;
  225.   register struct objfile *objfile;
  226.   
  227.   ALL_PSYMTABS (objfile, pst)
  228.     {
  229.       if (STREQ (name, pst -> filename))
  230.     {
  231.       return (pst);
  232.     }
  233.     }
  234.  
  235.   /* Now, search for a matching tail (only if name doesn't have any dirs) */
  236.  
  237.   if (!strchr (name, '/'))
  238.     ALL_PSYMTABS (objfile, pst)
  239.       {
  240.     char *p = pst -> filename;
  241.     char *tail = strrchr (p, '/');
  242.  
  243.     if (tail)
  244.       p = tail + 1;
  245.  
  246.     if (STREQ (p, name))
  247.       return (pst);
  248.       }
  249.  
  250.   return (NULL);
  251. }
  252.  
  253. /* Demangle a GDB method stub type.
  254.    Note that this function is g++ specific. */
  255.  
  256. char *
  257. gdb_mangle_name (type, i, j)
  258.      struct type *type;
  259.      int i, j;
  260. {
  261.   int mangled_name_len;
  262.   char *mangled_name;
  263.   struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
  264.   struct fn_field *method = &f[j];
  265.   char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
  266.   char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
  267.   char *newname = type_name_no_tag (type);
  268.  
  269.   /* Does the form of physname indicate that it is the full mangled name
  270.      of a constructor (not just the args)?  */
  271.   int is_full_physname_constructor;
  272.  
  273.   int is_constructor;
  274.   int is_destructor = DESTRUCTOR_PREFIX_P (physname);
  275.   /* Need a new type prefix.  */
  276.   char *const_prefix = method->is_const ? "C" : "";
  277.   char *volatile_prefix = method->is_volatile ? "V" : "";
  278.   char buf[20];
  279.   int len = (newname == NULL ? 0 : strlen (newname));
  280.  
  281.   is_full_physname_constructor = 
  282.     ((physname[0]=='_' && physname[1]=='_' && 
  283.       (isdigit(physname[2]) || physname[2]=='Q' || physname[2]=='t'))
  284.      || (strncmp(physname, "__ct", 4) == 0));
  285.  
  286.   is_constructor =
  287.     is_full_physname_constructor || (newname && STREQ(field_name, newname));
  288.  
  289.   if (!is_destructor)
  290.     is_destructor = (strncmp(physname, "__dt", 4) == 0); 
  291.  
  292. #ifndef GCC_MANGLE_BUG
  293.   if (is_destructor || is_full_physname_constructor)
  294.     {
  295.       mangled_name = (char*) xmalloc(strlen(physname)+1);
  296.       strcpy(mangled_name, physname);
  297.       return mangled_name;
  298.     }
  299.  
  300.   if (len == 0)
  301.     {
  302.       sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
  303.       if (strcmp(buf, "__") == 0)
  304.     buf[0] = '\0';
  305.     }
  306.   else
  307.     {
  308.       sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
  309.     }
  310.   mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
  311.               + strlen (buf) + len
  312.               + strlen (physname)
  313.               + 1);
  314.  
  315.   /* Only needed for GNU-mangled names.  ANSI-mangled names
  316.      work with the normal mechanisms.  */
  317.   if (OPNAME_PREFIX_P (field_name))
  318.     {
  319.       char *opname = cplus_mangle_opname (field_name + 3, 0);
  320.       if (opname == NULL)
  321.     error ("No mangling for \"%s\"", field_name);
  322.       mangled_name_len += strlen (opname);
  323.       mangled_name = (char *)xmalloc (mangled_name_len);
  324.  
  325.       strncpy (mangled_name, field_name, 3);
  326.       mangled_name[3] = '\0';
  327.       strcat (mangled_name, opname);
  328.     }
  329.   else
  330.     {
  331.       mangled_name = (char *)xmalloc (mangled_name_len);
  332.       if (is_constructor)
  333.     mangled_name[0] = '\0';
  334.       else
  335.     strcpy (mangled_name, field_name);
  336.     }
  337.   strcat (mangled_name, buf);
  338.   /* If the class doesn't have a name, i.e. newname NULL, then we just
  339.      mangle it using 0 for the length of the class.  Thus it gets mangled
  340.      as something starting with `::' rather than `classname::'. */ 
  341.   if (newname != NULL)
  342.     strcat (mangled_name, newname);
  343.  
  344. #else
  345.  
  346.   if (is_constructor)
  347.     {
  348.       buf[0] = '\0';
  349.     }
  350.   else
  351.     {
  352.       sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
  353.     }
  354.  
  355.   mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
  356.               + strlen (buf) + strlen (physname) + 1);
  357.  
  358.   /* Only needed for GNU-mangled names.  ANSI-mangled names
  359.      work with the normal mechanisms.  */
  360.   if (OPNAME_PREFIX_P (field_name))
  361.     {
  362.       char *opname;
  363.       opname = cplus_mangle_opname (field_name + 3, 0);
  364.       if (opname == NULL)
  365.     {
  366.       error ("No mangling for \"%s\"", field_name);
  367.     }
  368.       mangled_name_len += strlen (opname);
  369.       mangled_name = (char *) xmalloc (mangled_name_len);
  370.  
  371.       strncpy (mangled_name, field_name, 3);
  372.       strcpy (mangled_name + 3, opname);
  373.     }
  374.   else
  375.     {
  376.       mangled_name = (char *) xmalloc (mangled_name_len);
  377.       if (is_constructor)
  378.     {
  379.       mangled_name[0] = '\0';
  380.     }
  381.       else
  382.     {
  383.       strcpy (mangled_name, field_name);
  384.     }
  385.     }
  386.   strcat (mangled_name, buf);
  387.  
  388. #endif
  389.   strcat (mangled_name, physname);
  390.   return (mangled_name);
  391. }
  392.  
  393.  
  394. /* Find which partial symtab on contains PC.  Return 0 if none.  */
  395.  
  396. struct partial_symtab *
  397. find_pc_psymtab (pc)
  398.      register CORE_ADDR pc;
  399. {
  400.   register struct partial_symtab *pst;
  401.   register struct objfile *objfile;
  402.  
  403.   ALL_PSYMTABS (objfile, pst)
  404.     {
  405.       if (pc >= pst->textlow && pc < pst->texthigh)
  406.     return (pst);
  407.     }
  408.   return (NULL);
  409. }
  410.  
  411. /* Find which partial symbol within a psymtab contains PC.  Return 0
  412.    if none.  Check all psymtabs if PSYMTAB is 0.  */
  413. struct partial_symbol *
  414. find_pc_psymbol (psymtab, pc)
  415.      struct partial_symtab *psymtab;
  416.      CORE_ADDR pc;
  417. {
  418.   struct partial_symbol *best = NULL, *p;
  419.   CORE_ADDR best_pc;
  420.   
  421.   if (!psymtab)
  422.     psymtab = find_pc_psymtab (pc);
  423.   if (!psymtab)
  424.     return 0;
  425.  
  426.   best_pc = psymtab->textlow - 1;
  427.  
  428.   /* Search the global symbols as well as the static symbols, so that
  429.      find_pc_partial_function doesn't use a minimal symbol and thus
  430.      cache a bad endaddr.  */
  431.   for (p = psymtab->objfile->global_psymbols.list + psymtab->globals_offset;
  432.        (p - (psymtab->objfile->global_psymbols.list + psymtab->globals_offset)
  433.     < psymtab->n_global_syms);
  434.        p++)
  435.     if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
  436.     && SYMBOL_CLASS (p) == LOC_BLOCK
  437.     && pc >= SYMBOL_VALUE_ADDRESS (p)
  438.     && SYMBOL_VALUE_ADDRESS (p) > best_pc)
  439.       {
  440.     best_pc = SYMBOL_VALUE_ADDRESS (p);
  441.     best = p;
  442.       }
  443.   for (p = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
  444.        (p - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
  445.     < psymtab->n_static_syms);
  446.        p++)
  447.     if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
  448.     && SYMBOL_CLASS (p) == LOC_BLOCK
  449.     && pc >= SYMBOL_VALUE_ADDRESS (p)
  450.     && SYMBOL_VALUE_ADDRESS (p) > best_pc)
  451.       {
  452.     best_pc = SYMBOL_VALUE_ADDRESS (p);
  453.     best = p;
  454.       }
  455.   if (best_pc == psymtab->textlow - 1)
  456.     return 0;
  457.   return best;
  458. }
  459.  
  460.  
  461. /* Find the definition for a specified symbol name NAME
  462.    in namespace NAMESPACE, visible from lexical block BLOCK.
  463.    Returns the struct symbol pointer, or zero if no symbol is found.
  464.    If SYMTAB is non-NULL, store the symbol table in which the
  465.    symbol was found there, or NULL if not found.
  466.    C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
  467.    NAME is a field of the current implied argument `this'.  If so set
  468.    *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero. 
  469.    BLOCK_FOUND is set to the block in which NAME is found (in the case of
  470.    a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
  471.  
  472. struct symbol *
  473. lookup_symbol (name, block, namespace, is_a_field_of_this, symtab)
  474.      const char *name;
  475.      register const struct block *block;
  476.      const enum namespace namespace;
  477.      int *is_a_field_of_this;
  478.      struct symtab **symtab;
  479. {
  480.   register struct symbol *sym;
  481.   register struct symtab *s = NULL;
  482.   register struct partial_symtab *ps;
  483.   struct blockvector *bv;
  484.   register struct objfile *objfile;
  485.   register struct block *b;
  486.   register struct minimal_symbol *msymbol;
  487.  
  488.   /* Search specified block and its superiors.  */
  489.  
  490.   while (block != 0)
  491.     {
  492.       sym = lookup_block_symbol (block, name, namespace);
  493.       if (sym) 
  494.     {
  495.       block_found = block;
  496.       if (symtab != NULL)
  497.         {
  498.           /* Search the list of symtabs for one which contains the
  499.          address of the start of this block.  */
  500.           ALL_SYMTABS (objfile, s)
  501.         {
  502.           bv = BLOCKVECTOR (s);
  503.           b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  504.           if (BLOCK_START (b) <= BLOCK_START (block)
  505.               && BLOCK_END (b) > BLOCK_START (block))
  506.             goto found;
  507.         }
  508. found:
  509.           *symtab = s;
  510.         }
  511.  
  512.       return (sym);
  513.     }
  514.       block = BLOCK_SUPERBLOCK (block);
  515.     }
  516.  
  517.   /* FIXME: this code is never executed--block is always NULL at this
  518.      point.  What is it trying to do, anyway?  We already should have
  519.      checked the STATIC_BLOCK above (it is the superblock of top-level
  520.      blocks).  Why is VAR_NAMESPACE special-cased?  */
  521.   /* Don't need to mess with the psymtabs; if we have a block,
  522.      that file is read in.  If we don't, then we deal later with
  523.      all the psymtab stuff that needs checking.  */
  524.   if (namespace == VAR_NAMESPACE && block != NULL)
  525.     {
  526.       struct block *b;
  527.       /* Find the right symtab.  */
  528.       ALL_SYMTABS (objfile, s)
  529.     {
  530.       bv = BLOCKVECTOR (s);
  531.       b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  532.       if (BLOCK_START (b) <= BLOCK_START (block)
  533.           && BLOCK_END (b) > BLOCK_START (block))
  534.         {
  535.           sym = lookup_block_symbol (b, name, VAR_NAMESPACE);
  536.           if (sym)
  537.         {
  538.           block_found = b;
  539.           if (symtab != NULL)
  540.             *symtab = s;
  541.           return sym;
  542.         }
  543.         }
  544.     }
  545.     }
  546.  
  547.  
  548.   /* C++: If requested to do so by the caller, 
  549.      check to see if NAME is a field of `this'. */
  550.   if (is_a_field_of_this)
  551.     {
  552.       struct value *v = value_of_this (0);
  553.       
  554.       *is_a_field_of_this = 0;
  555.       if (v && check_field (v, name))
  556.     {
  557.       *is_a_field_of_this = 1;
  558.       if (symtab != NULL)
  559.         *symtab = NULL;
  560.       return 0;
  561.     }
  562.     }
  563.  
  564.   /* Now search all global blocks.  Do the symtab's first, then
  565.      check the psymtab's */
  566.   
  567.   ALL_SYMTABS (objfile, s)
  568.     {
  569.       bv = BLOCKVECTOR (s);
  570.       block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  571.       sym = lookup_block_symbol (block, name, namespace);
  572.       if (sym) 
  573.     {
  574.       block_found = block;
  575.       if (symtab != NULL)
  576.         *symtab = s;
  577.       return sym;
  578.     }
  579.     }
  580.  
  581.   /* Check for the possibility of the symbol being a global function
  582.      that is stored in one of the minimal symbol tables.  Eventually, all
  583.      global symbols might be resolved in this way.  */
  584.   
  585.   if (namespace == VAR_NAMESPACE)
  586.     {
  587.       msymbol = lookup_minimal_symbol (name, (struct objfile *) NULL);
  588.       if (msymbol != NULL)
  589.     {
  590.       s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol));
  591.       /* If S is NULL, there are no debug symbols for this file.
  592.          Skip this stuff and check for matching static symbols below. */
  593.       if (s != NULL)
  594.         {
  595.           bv = BLOCKVECTOR (s);
  596.           block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  597.           sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
  598.                      namespace);
  599.               /* We kept static functions in minimal symbol table as well as
  600.          in static scope. We want to find them in the symbol table. */
  601.         if (!sym) {
  602.           block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  603.           sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
  604.                          namespace);
  605.         }
  606.  
  607.           /* sym == 0 if symbol was found in the minimal symbol table
  608.          but not in the symtab.
  609.          Return 0 to use the msymbol definition of "foo_".
  610.  
  611.          This happens for Fortran  "foo_" symbols,
  612.          which are "foo" in the symtab.
  613.  
  614.          This can also happen if "asm" is used to make a
  615.          regular symbol but not a debugging symbol, e.g.
  616.          asm(".globl _main");
  617.          asm("_main:");
  618.          */
  619.  
  620.           if (symtab != NULL)
  621.         *symtab = s;
  622.           return sym;
  623.         }
  624.     }
  625.     }
  626.       
  627.   ALL_PSYMTABS (objfile, ps)
  628.     {
  629.       if (!ps->readin && lookup_partial_symbol (ps, name, 1, namespace))
  630.     {
  631.       s = PSYMTAB_TO_SYMTAB(ps);
  632.       bv = BLOCKVECTOR (s);
  633.       block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  634.       sym = lookup_block_symbol (block, name, namespace);
  635.       if (!sym)
  636.         error ("Internal: global symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
  637.       if (symtab != NULL)
  638.         *symtab = s;
  639.       return sym;
  640.     }
  641.     }
  642.  
  643.   /* Now search all per-file blocks.
  644.      Not strictly correct, but more useful than an error.
  645.      Do the symtabs first, then check the psymtabs */
  646.  
  647.   ALL_SYMTABS (objfile, s)
  648.     {
  649.       bv = BLOCKVECTOR (s);
  650.       block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  651.       sym = lookup_block_symbol (block, name, namespace);
  652.       if (sym) 
  653.     {
  654.       block_found = block;
  655.       if (symtab != NULL)
  656.         *symtab = s;
  657.       return sym;
  658.     }
  659.     }
  660.  
  661.   ALL_PSYMTABS (objfile, ps)
  662.     {
  663.       if (!ps->readin && lookup_partial_symbol (ps, name, 0, namespace))
  664.     {
  665.       s = PSYMTAB_TO_SYMTAB(ps);
  666.       bv = BLOCKVECTOR (s);
  667.       block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  668.       sym = lookup_block_symbol (block, name, namespace);
  669.       if (!sym)
  670.         error ("Internal: static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
  671.       if (symtab != NULL)
  672.         *symtab = s;
  673.       return sym;
  674.     }
  675.     }
  676.  
  677.   /* Now search all per-file blocks for static mangled symbols.
  678.      Do the symtabs first, then check the psymtabs.  */
  679.  
  680.   if (namespace == VAR_NAMESPACE)
  681.     {
  682.       ALL_SYMTABS (objfile, s)
  683.     {
  684.       bv = BLOCKVECTOR (s);
  685.       block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  686.       sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
  687.       if (sym) 
  688.         {
  689.           block_found = block;
  690.           if (symtab != NULL)
  691.         *symtab = s;
  692.           return sym;
  693.         }
  694.     }
  695.  
  696.       ALL_PSYMTABS (objfile, ps)
  697.     {
  698.       if (!ps->readin && lookup_partial_symbol (ps, name, 0, VAR_NAMESPACE))
  699.         {
  700.           s = PSYMTAB_TO_SYMTAB(ps);
  701.           bv = BLOCKVECTOR (s);
  702.           block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  703.           sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
  704.           if (!sym)
  705.         error ("Internal: mangled static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
  706.           if (symtab != NULL)
  707.         *symtab = s;
  708.           return sym;
  709.         }
  710.     }
  711.     }
  712.  
  713.   if (symtab != NULL)
  714.     *symtab = NULL;
  715.   return 0;
  716. }
  717.  
  718. /* Look, in partial_symtab PST, for symbol NAME.  Check the global
  719.    symbols if GLOBAL, the static symbols if not */
  720.  
  721. static struct partial_symbol *
  722. lookup_partial_symbol (pst, name, global, namespace)
  723.      struct partial_symtab *pst;
  724.      const char *name;
  725.      int global;
  726.      enum namespace namespace;
  727. {
  728.   struct partial_symbol *start, *psym;
  729.   struct partial_symbol *top, *bottom, *center;
  730.   int length = (global ? pst->n_global_syms : pst->n_static_syms);
  731.   int do_linear_search = 1;
  732.  
  733.   if (length == 0)
  734.     {
  735.       return (NULL);
  736.     }
  737.   
  738.   start = (global ?
  739.        pst->objfile->global_psymbols.list + pst->globals_offset :
  740.        pst->objfile->static_psymbols.list + pst->statics_offset  );
  741.  
  742.   if (global)        /* This means we can use a binary search. */
  743.     {
  744.       do_linear_search = 0;
  745.  
  746.       /* Binary search.  This search is guaranteed to end with center
  747.          pointing at the earliest partial symbol with the correct
  748.      name.  At that point *all* partial symbols with that name
  749.      will be checked against the correct namespace. */
  750.  
  751.       bottom = start;
  752.       top = start + length - 1;
  753.       while (top > bottom)
  754.     {
  755.       center = bottom + (top - bottom) / 2;
  756.       assert (center < top);
  757.       if (!do_linear_search && SYMBOL_LANGUAGE (center) == language_cplus)
  758.         {
  759.           do_linear_search = 1;
  760.         }
  761.       if (STRCMP (SYMBOL_NAME (center), name) >= 0)
  762.         {
  763.           top = center;
  764.         }
  765.       else
  766.         {
  767.           bottom = center + 1;
  768.         }
  769.     }
  770.       assert (top == bottom);
  771.       while (STREQ (SYMBOL_NAME (top), name))
  772.     {
  773.       if (SYMBOL_NAMESPACE (top) == namespace)
  774.         {
  775.           return top;
  776.         }
  777.       top ++;
  778.     }
  779.     }
  780.  
  781.   /* Can't use a binary search or else we found during the binary search that
  782.      we should also do a linear search. */
  783.  
  784.   if (do_linear_search)
  785.     {
  786.       for (psym = start; psym < start + length; psym++)
  787.     {
  788.       if (namespace == SYMBOL_NAMESPACE (psym))
  789.         {
  790.           if (SYMBOL_MATCHES_NAME (psym, name))
  791.         {
  792.           return (psym);
  793.         }
  794.         }
  795.     }
  796.     }
  797.  
  798.   return (NULL);
  799. }
  800.  
  801. /* Find the psymtab containing main(). */
  802. /* FIXME:  What about languages without main() or specially linked
  803.    executables that have no main() ? */
  804.  
  805. struct partial_symtab *
  806. find_main_psymtab ()
  807. {
  808.   register struct partial_symtab *pst;
  809.   register struct objfile *objfile;
  810.  
  811.   ALL_PSYMTABS (objfile, pst)
  812.     {
  813.       if (lookup_partial_symbol (pst, "main", 1, VAR_NAMESPACE))
  814.     {
  815.       return (pst);
  816.     }
  817.     }
  818.   return (NULL);
  819. }
  820.  
  821. /* Search BLOCK for symbol NAME in NAMESPACE.
  822.  
  823.    Note that if NAME is the demangled form of a C++ symbol, we will fail
  824.    to find a match during the binary search of the non-encoded names, but
  825.    for now we don't worry about the slight inefficiency of looking for
  826.    a match we'll never find, since it will go pretty quick.  Once the
  827.    binary search terminates, we drop through and do a straight linear
  828.    search on the symbols.  Each symbol which is marked as being a C++
  829.    symbol (language_cplus set) has both the encoded and non-encoded names
  830.    tested for a match. */
  831.  
  832. struct symbol *
  833. lookup_block_symbol (block, name, namespace)
  834.      register const struct block *block;
  835.      const char *name;
  836.      const enum namespace namespace;
  837. {
  838.   register int bot, top, inc;
  839.   register struct symbol *sym;
  840.   register struct symbol *sym_found = NULL;
  841.   register int do_linear_search = 1;
  842.  
  843.   /* If the blocks's symbols were sorted, start with a binary search.  */
  844.  
  845.   if (BLOCK_SHOULD_SORT (block))
  846.     {
  847.       /* Reset the linear search flag so if the binary search fails, we
  848.      won't do the linear search once unless we find some reason to
  849.      do so, such as finding a C++ symbol during the binary search.
  850.      Note that for C++ modules, ALL the symbols in a block should
  851.      end up marked as C++ symbols. */
  852.  
  853.       do_linear_search = 0;
  854.       top = BLOCK_NSYMS (block);
  855.       bot = 0;
  856.  
  857.       /* Advance BOT to not far before the first symbol whose name is NAME. */
  858.  
  859.       while (1)
  860.     {
  861.       inc = (top - bot + 1);
  862.       /* No need to keep binary searching for the last few bits worth.  */
  863.       if (inc < 4)
  864.         {
  865.           break;
  866.         }
  867.       inc = (inc >> 1) + bot;
  868.       sym = BLOCK_SYM (block, inc);
  869.       if (!do_linear_search && SYMBOL_LANGUAGE (sym) == language_cplus)
  870.         {
  871.           do_linear_search = 1;
  872.         }
  873.       if (SYMBOL_NAME (sym)[0] < name[0])
  874.         {
  875.           bot = inc;
  876.         }
  877.       else if (SYMBOL_NAME (sym)[0] > name[0])
  878.         {
  879.           top = inc;
  880.         }
  881.       else if (STRCMP (SYMBOL_NAME (sym), name) < 0)
  882.         {
  883.           bot = inc;
  884.         }
  885.       else
  886.         {
  887.           top = inc;
  888.         }
  889.     }
  890.  
  891.       /* Now scan forward until we run out of symbols, find one whose
  892.      name is greater than NAME, or find one we want.  If there is
  893.      more than one symbol with the right name and namespace, we
  894.      return the first one; I believe it is now impossible for us
  895.      to encounter two symbols with the same name and namespace
  896.      here, because blocks containing argument symbols are no
  897.      longer sorted.  */
  898.  
  899.       top = BLOCK_NSYMS (block);
  900.       while (bot < top)
  901.     {
  902.       sym = BLOCK_SYM (block, bot);
  903.       inc = SYMBOL_NAME (sym)[0] - name[0];
  904.       if (inc == 0)
  905.         {
  906.           inc = STRCMP (SYMBOL_NAME (sym), name);
  907.         }
  908.       if (inc == 0 && SYMBOL_NAMESPACE (sym) == namespace)
  909.         {
  910.           return (sym);
  911.         }
  912.       if (inc > 0)
  913.         {
  914.           break;
  915.         }
  916.       bot++;
  917.     }
  918.     }
  919.  
  920.   /* Here if block isn't sorted, or we fail to find a match during the
  921.      binary search above.  If during the binary search above, we find a
  922.      symbol which is a C++ symbol, then we have re-enabled the linear
  923.      search flag which was reset when starting the binary search.
  924.  
  925.      This loop is equivalent to the loop above, but hacked greatly for speed.
  926.  
  927.      Note that parameter symbols do not always show up last in the
  928.      list; this loop makes sure to take anything else other than
  929.      parameter symbols first; it only uses parameter symbols as a
  930.      last resort.  Note that this only takes up extra computation
  931.      time on a match.  */
  932.  
  933.   if (do_linear_search)
  934.     {
  935.       top = BLOCK_NSYMS (block);
  936.       bot = 0;
  937.       while (bot < top)
  938.     {
  939.       sym = BLOCK_SYM (block, bot);
  940.       if (SYMBOL_NAMESPACE (sym) == namespace &&
  941.           SYMBOL_MATCHES_NAME (sym, name))
  942.         {
  943.           sym_found = sym;
  944.           if (SYMBOL_CLASS (sym) != LOC_ARG &&
  945.           SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
  946.           SYMBOL_CLASS (sym) != LOC_REF_ARG &&
  947.           SYMBOL_CLASS (sym) != LOC_REGPARM &&
  948.           SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
  949.           SYMBOL_CLASS (sym) != LOC_BASEREG_ARG)
  950.         {
  951.           break;
  952.         }
  953.         }
  954.       bot++;
  955.     }
  956.     }
  957.   return (sym_found);        /* Will be NULL if not found. */
  958. }
  959.  
  960.  
  961. /* Return the symbol for the function which contains a specified
  962.    lexical block, described by a struct block BL.  */
  963.  
  964. struct symbol *
  965. block_function (bl)
  966.      struct block *bl;
  967. {
  968.   while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
  969.     bl = BLOCK_SUPERBLOCK (bl);
  970.  
  971.   return BLOCK_FUNCTION (bl);
  972. }
  973.  
  974. /* Find the symtab associated with PC.  Look through the psymtabs and read in
  975.    another symtab if necessary. */
  976.  
  977. struct symtab *
  978. find_pc_symtab (pc)
  979.      register CORE_ADDR pc;
  980. {
  981.   register struct block *b;
  982.   struct blockvector *bv;
  983.   register struct symtab *s = NULL;
  984.   register struct symtab *best_s = NULL;
  985.   register struct partial_symtab *ps;
  986.   register struct objfile *objfile;
  987.   int distance = 0;
  988.  
  989.   /* Search all symtabs for the one whose file contains our address, and which
  990.      is the smallest of all the ones containing the address.  This is designed
  991.      to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
  992.      and symtab b is at 0x2000-0x3000.  So the GLOBAL_BLOCK for a is from
  993.      0x1000-0x4000, but for address 0x2345 we want to return symtab b.
  994.      This is said to happen for the mips; it might be swifter to create
  995.      several symtabs with the same name like xcoff does (I'm not sure).  */
  996.  
  997.   ALL_SYMTABS (objfile, s)
  998.     {
  999.       bv = BLOCKVECTOR (s);
  1000.       b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  1001.       if (BLOCK_START (b) <= pc
  1002.       && BLOCK_END (b) > pc
  1003.       && (distance == 0
  1004.           || BLOCK_END (b) - BLOCK_START (b) < distance))
  1005.     {
  1006.       distance = BLOCK_END (b) - BLOCK_START (b);
  1007.       best_s = s;
  1008.     }
  1009.     }
  1010.  
  1011.   if (best_s != NULL)
  1012.     return(best_s);
  1013.  
  1014.   s = NULL;
  1015.   ps = find_pc_psymtab (pc);
  1016.   if (ps)
  1017.     {
  1018.       if (ps->readin)
  1019.     /* Might want to error() here (in case symtab is corrupt and
  1020.        will cause a core dump), but maybe we can successfully
  1021.        continue, so let's not.  */
  1022.     warning ("\
  1023. (Internal error: pc 0x%lx in read in psymtab, but not in symtab.)\n",
  1024.              (unsigned long) pc);
  1025.       s = PSYMTAB_TO_SYMTAB (ps);
  1026.     }
  1027.   return (s);
  1028. }
  1029.  
  1030. /* Find the closest symbol value (of any sort -- function or variable)
  1031.    for a given address value.  Slow but complete.  */
  1032.  
  1033. struct symbol *
  1034. find_addr_symbol (addr, symtabp, symaddrp)
  1035.      CORE_ADDR addr;
  1036.      struct symtab **symtabp;
  1037.      CORE_ADDR *symaddrp;
  1038. {
  1039.   struct symtab *symtab, *best_symtab;
  1040.   struct objfile *objfile;
  1041.   register int bot, top;
  1042.   register struct symbol *sym;
  1043.   register CORE_ADDR sym_addr;
  1044.   struct block *block;
  1045.   int blocknum;
  1046.  
  1047.   /* Info on best symbol seen so far */
  1048.  
  1049.   register CORE_ADDR best_sym_addr = 0;
  1050.   struct symbol *best_sym = 0;
  1051.  
  1052.   /* FIXME -- we should pull in all the psymtabs, too!  */
  1053.   ALL_SYMTABS (objfile, symtab)
  1054.     {
  1055.       /* Search the global and static blocks in this symtab for
  1056.      the closest symbol-address to the desired address.  */
  1057.  
  1058.       for (blocknum = GLOBAL_BLOCK; blocknum <= STATIC_BLOCK; blocknum++)
  1059.     {
  1060.       QUIT;
  1061.       block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), blocknum);
  1062.       top = BLOCK_NSYMS (block);
  1063.       for (bot = 0; bot < top; bot++)
  1064.         {
  1065.           sym = BLOCK_SYM (block, bot);
  1066.           switch (SYMBOL_CLASS (sym))
  1067.         {
  1068.         case LOC_STATIC:    
  1069.         case LOC_LABEL:    
  1070.           sym_addr = SYMBOL_VALUE_ADDRESS (sym);
  1071.           break;
  1072.  
  1073.         case LOC_BLOCK:
  1074.           sym_addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
  1075.           break;
  1076.  
  1077.         default:
  1078.           continue;
  1079.         }
  1080.  
  1081.         if (sym_addr <= addr)
  1082.           if (sym_addr > best_sym_addr)
  1083.             {
  1084.               /* Quit if we found an exact match.  */
  1085.               best_sym = sym;
  1086.               best_sym_addr = sym_addr;
  1087.               best_symtab = symtab;
  1088.               if (sym_addr == addr)
  1089.             goto done;
  1090.             }
  1091.         }
  1092.     }
  1093.     }
  1094.  
  1095.  done:
  1096.   if (symtabp)
  1097.     *symtabp = best_symtab;
  1098.   if (symaddrp)
  1099.     *symaddrp = best_sym_addr;
  1100.   return best_sym;
  1101. }
  1102.  
  1103.  
  1104. /* Find the source file and line number for a given PC value.
  1105.    Return a structure containing a symtab pointer, a line number,
  1106.    and a pc range for the entire source line.
  1107.    The value's .pc field is NOT the specified pc.
  1108.    NOTCURRENT nonzero means, if specified pc is on a line boundary,
  1109.    use the line that ends there.  Otherwise, in that case, the line
  1110.    that begins there is used.  */
  1111.  
  1112. /* The big complication here is that a line may start in one file, and end just
  1113.    before the start of another file.  This usually occurs when you #include
  1114.    code in the middle of a subroutine.  To properly find the end of a line's PC
  1115.    range, we must search all symtabs associated with this compilation unit, and
  1116.    find the one whose first PC is closer than that of the next line in this
  1117.    symtab.  */
  1118.  
  1119. /* If it's worth the effort, we could be using a binary search.  */
  1120.  
  1121. struct symtab_and_line
  1122. find_pc_line (pc, notcurrent)
  1123.      CORE_ADDR pc;
  1124.      int notcurrent;
  1125. {
  1126.   struct symtab *s;
  1127.   register struct linetable *l;
  1128.   register int len;
  1129.   register int i;
  1130.   register struct linetable_entry *item;
  1131.   struct symtab_and_line val;
  1132.   struct blockvector *bv;
  1133.  
  1134.   /* Info on best line seen so far, and where it starts, and its file.  */
  1135.  
  1136.   struct linetable_entry *best = NULL;
  1137.   CORE_ADDR best_end = 0;
  1138.   struct symtab *best_symtab = 0;
  1139.  
  1140.   /* Store here the first line number
  1141.      of a file which contains the line at the smallest pc after PC.
  1142.      If we don't find a line whose range contains PC,
  1143.      we will use a line one less than this,
  1144.      with a range from the start of that file to the first line's pc.  */
  1145.   struct linetable_entry *alt = NULL;
  1146.   struct symtab *alt_symtab = 0;
  1147.  
  1148.   /* Info on best line seen in this file.  */
  1149.  
  1150.   struct linetable_entry *prev;
  1151.  
  1152.   /* If this pc is not from the current frame,
  1153.      it is the address of the end of a call instruction.
  1154.      Quite likely that is the start of the following statement.
  1155.      But what we want is the statement containing the instruction.
  1156.      Fudge the pc to make sure we get that.  */
  1157.  
  1158.   if (notcurrent) pc -= 1;
  1159.  
  1160.   s = find_pc_symtab (pc);
  1161.   if (!s)
  1162.     {
  1163.       val.symtab = 0;
  1164.       val.line = 0;
  1165.       val.pc = pc;
  1166.       val.end = 0;
  1167.       return val;
  1168.     }
  1169.  
  1170.   bv = BLOCKVECTOR (s);
  1171.  
  1172.   /* Look at all the symtabs that share this blockvector.
  1173.      They all have the same apriori range, that we found was right;
  1174.      but they have different line tables.  */
  1175.  
  1176.   for (; s && BLOCKVECTOR (s) == bv; s = s->next)
  1177.     {
  1178.       /* Find the best line in this symtab.  */
  1179.       l = LINETABLE (s);
  1180.       if (!l)
  1181.         continue;
  1182.       len = l->nitems;
  1183.       if (len <= 0)
  1184.     {
  1185.       /* I think len can be zero if the symtab lacks line numbers
  1186.          (e.g. gcc -g1).  (Either that or the LINETABLE is NULL;
  1187.          I'm not sure which, and maybe it depends on the symbol
  1188.          reader).  */
  1189.       continue;
  1190.     }
  1191.  
  1192.       prev = NULL;
  1193.       item = l->item;        /* Get first line info */
  1194.  
  1195.       /* Is this file's first line closer than the first lines of other files?
  1196.      If so, record this file, and its first line, as best alternate.  */
  1197.       if (item->pc > pc && (!alt || item->pc < alt->pc))
  1198.     {
  1199.       alt = item;
  1200.       alt_symtab = s;
  1201.     }
  1202.  
  1203.       for (i = 0; i < len; i++, item++)
  1204.     {
  1205.       /* Return the last line that did not start after PC.  */
  1206.       if (item->pc > pc)
  1207.         break;
  1208.  
  1209.       prev = item;
  1210.     }
  1211.  
  1212.       /* At this point, prev points at the line whose start addr is <= pc, and
  1213.      item points at the next line.  If we ran off the end of the linetable
  1214.      (pc >= start of the last line), then prev == item.  If pc < start of
  1215.      the first line, prev will not be set.  */
  1216.  
  1217.       /* Is this file's best line closer than the best in the other files?
  1218.      If so, record this file, and its best line, as best so far.  */
  1219.  
  1220.       if (prev && (!best || prev->pc > best->pc))
  1221.     {
  1222.       best = prev;
  1223.       best_symtab = s;
  1224.       /* If another line is in the linetable, and its PC is closer
  1225.          than the best_end we currently have, take it as best_end.  */
  1226.       if (i < len && (best_end == 0 || best_end > item->pc))
  1227.         best_end = item->pc;
  1228.     }
  1229.     }
  1230.  
  1231.   if (!best_symtab)
  1232.     {
  1233.       if (!alt_symtab)
  1234.     {            /* If we didn't find any line # info, just
  1235.                  return zeros.  */
  1236.       val.symtab = 0;
  1237.       val.line = 0;
  1238.       val.pc = pc;
  1239.       val.end = 0;
  1240.     }
  1241.       else
  1242.     {
  1243.       val.symtab = alt_symtab;
  1244.       val.line = alt->line - 1;
  1245.       val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
  1246.       val.end = alt->pc;
  1247.     }
  1248.     }
  1249.   else
  1250.     {
  1251.       val.symtab = best_symtab;
  1252.       val.line = best->line;
  1253.       val.pc = best->pc;
  1254.       if (best_end && (!alt || best_end < alt->pc))
  1255.     val.end = best_end;
  1256.       else if (alt)
  1257.     val.end = alt->pc;
  1258.       else
  1259.     val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
  1260.     }
  1261.   return val;
  1262. }
  1263.  
  1264. static int find_line_symtab PARAMS ((struct symtab *, int, struct linetable **,
  1265.                      int *, int *));
  1266.  
  1267. /* Find line number LINE in any symtab whose name is the same as
  1268.    SYMTAB.
  1269.  
  1270.    If found, return 1, set *LINETABLE to the linetable in which it was
  1271.    found, set *INDEX to the index in the linetable of the best entry
  1272.    found, and set *EXACT_MATCH nonzero if the value returned is an
  1273.    exact match.
  1274.  
  1275.    If not found, return 0.  */
  1276.  
  1277. static int
  1278. find_line_symtab (symtab, line, linetable, index, exact_match)
  1279.      struct symtab *symtab;
  1280.      int line;
  1281.      struct linetable **linetable;
  1282.      int *index;
  1283.      int *exact_match;
  1284. {
  1285.   int exact;
  1286.  
  1287.   /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
  1288.      so far seen.  */
  1289.  
  1290.   int best_index;
  1291.   struct linetable *best_linetable;
  1292.  
  1293.   /* First try looking it up in the given symtab.  */
  1294.   best_linetable = LINETABLE (symtab);
  1295.   best_index = find_line_common (best_linetable, line, &exact);
  1296.   if (best_index < 0 || !exact)
  1297.     {
  1298.       /* Didn't find an exact match.  So we better keep looking for
  1299.      another symtab with the same name.  In the case of xcoff,
  1300.      multiple csects for one source file (produced by IBM's FORTRAN
  1301.      compiler) produce multiple symtabs (this is unavoidable
  1302.      assuming csects can be at arbitrary places in memory and that
  1303.      the GLOBAL_BLOCK of a symtab has a begin and end address).  */
  1304.  
  1305.       /* BEST is the smallest linenumber > LINE so far seen,
  1306.      or 0 if none has been seen so far.
  1307.      BEST_INDEX and BEST_LINETABLE identify the item for it.  */
  1308.       int best;
  1309.  
  1310.       struct objfile *objfile;
  1311.       struct symtab *s;
  1312.  
  1313.       if (best_index >= 0)
  1314.     best = best_linetable->item[best_index].line;
  1315.       else
  1316.     best = 0;
  1317.  
  1318.       ALL_SYMTABS (objfile, s)
  1319.     {
  1320.       struct linetable *l;
  1321.       int ind;
  1322.  
  1323.       if (!STREQ (symtab->filename, s->filename))
  1324.         continue;
  1325.       l = LINETABLE (s);
  1326.       ind = find_line_common (l, line, &exact);
  1327.       if (ind >= 0)
  1328.         {
  1329.           if (exact)
  1330.         {
  1331.           best_index = ind;
  1332.           best_linetable = l;
  1333.           goto done;
  1334.         }
  1335.           if (best == 0 || l->item[ind].line < best)
  1336.         {
  1337.           best = l->item[ind].line;
  1338.           best_index = ind;
  1339.           best_linetable = l;
  1340.         }
  1341.         }
  1342.     }
  1343.     }
  1344.  done:
  1345.   if (best_index < 0)
  1346.     return 0;
  1347.  
  1348.   if (index)
  1349.     *index = best_index;
  1350.   if (linetable)
  1351.     *linetable = best_linetable;
  1352.   if (exact_match)
  1353.     *exact_match = exact;
  1354.   return 1;
  1355. }
  1356.  
  1357. /* Find the PC value for a given source file and line number.
  1358.    Returns zero for invalid line number.
  1359.    The source file is specified with a struct symtab.  */
  1360.  
  1361. CORE_ADDR
  1362. find_line_pc (symtab, line)
  1363.      struct symtab *symtab;
  1364.      int line;
  1365. {
  1366.   struct linetable *l;
  1367.   int ind;
  1368.  
  1369.   if (symtab == 0)
  1370.     return 0;
  1371.   if (find_line_symtab (symtab, line, &l, &ind, NULL))
  1372.     return l->item[ind].pc;
  1373.   else
  1374.     return 0;
  1375. }
  1376.  
  1377. /* Find the range of pc values in a line.
  1378.    Store the starting pc of the line into *STARTPTR
  1379.    and the ending pc (start of next line) into *ENDPTR.
  1380.    Returns 1 to indicate success.
  1381.    Returns 0 if could not find the specified line.  */
  1382.  
  1383. int
  1384. find_line_pc_range (sal, startptr, endptr)
  1385.      struct symtab_and_line sal;
  1386.      CORE_ADDR *startptr, *endptr;
  1387. {
  1388.   CORE_ADDR startaddr;
  1389.   struct symtab_and_line found_sal;
  1390.  
  1391.   startaddr = sal.pc;
  1392.   if (startaddr == 0)
  1393.     {
  1394.       startaddr = find_line_pc (sal.symtab, sal.line);
  1395.     }
  1396.   if (startaddr == 0)
  1397.     return 0;
  1398.  
  1399.   /* This whole function is based on address.  For example, if line 10 has
  1400.      two parts, one from 0x100 to 0x200 and one from 0x300 to 0x400, then
  1401.      "info line *0x123" should say the line goes from 0x100 to 0x200
  1402.      and "info line *0x355" should say the line goes from 0x300 to 0x400.
  1403.      This also insures that we never give a range like "starts at 0x134
  1404.      and ends at 0x12c".  */
  1405.  
  1406.   found_sal = find_pc_line (startaddr, 0);
  1407.   if (found_sal.line != sal.line)
  1408.     {
  1409.       /* The specified line (sal) has zero bytes.  */
  1410.       *startptr = found_sal.pc;
  1411.       *endptr = found_sal.pc;
  1412.     }
  1413.   else
  1414.     {
  1415.       *startptr = found_sal.pc;
  1416.       *endptr = found_sal.end;
  1417.     }
  1418.   return 1;
  1419. }
  1420.  
  1421. /* Given a line table and a line number, return the index into the line
  1422.    table for the pc of the nearest line whose number is >= the specified one.
  1423.    Return -1 if none is found.  The value is >= 0 if it is an index.
  1424.  
  1425.    Set *EXACT_MATCH nonzero if the value returned is an exact match.  */
  1426.  
  1427. static int
  1428. find_line_common (l, lineno, exact_match)
  1429.      register struct linetable *l;
  1430.      register int lineno;
  1431.      int *exact_match;
  1432. {
  1433.   register int i;
  1434.   register int len;
  1435.  
  1436.   /* BEST is the smallest linenumber > LINENO so far seen,
  1437.      or 0 if none has been seen so far.
  1438.      BEST_INDEX identifies the item for it.  */
  1439.  
  1440.   int best_index = -1;
  1441.   int best = 0;
  1442.  
  1443.   if (lineno <= 0)
  1444.     return -1;
  1445.   if (l == 0)
  1446.     return -1;
  1447.  
  1448.   len = l->nitems;
  1449.   for (i = 0; i < len; i++)
  1450.     {
  1451.       register struct linetable_entry *item = &(l->item[i]);
  1452.  
  1453.       if (item->line == lineno)
  1454.     {
  1455.       /* Return the first (lowest address) entry which matches.  */
  1456.       *exact_match = 1;
  1457.       return i;
  1458.     }
  1459.  
  1460.       if (item->line > lineno && (best == 0 || item->line < best))
  1461.     {
  1462.       best = item->line;
  1463.       best_index = i;
  1464.     }
  1465.     }
  1466.  
  1467.   /* If we got here, we didn't get an exact match.  */
  1468.  
  1469.   *exact_match = 0;
  1470.   return best_index;
  1471. }
  1472.  
  1473. int
  1474. find_pc_line_pc_range (pc, startptr, endptr)
  1475.      CORE_ADDR pc;
  1476.      CORE_ADDR *startptr, *endptr;
  1477. {
  1478.   struct symtab_and_line sal;
  1479.   sal = find_pc_line (pc, 0);
  1480.   *startptr = sal.pc;
  1481.   *endptr = sal.end;
  1482.   return sal.symtab != 0;
  1483. }
  1484.  
  1485. /* If P is of the form "operator[ \t]+..." where `...' is
  1486.    some legitimate operator text, return a pointer to the
  1487.    beginning of the substring of the operator text.
  1488.    Otherwise, return "".  */
  1489. static char *
  1490. operator_chars (p, end)
  1491.      char *p;
  1492.      char **end;
  1493. {
  1494.   *end = "";
  1495.   if (strncmp (p, "operator", 8))
  1496.     return *end;
  1497.   p += 8;
  1498.  
  1499.   /* Don't get faked out by `operator' being part of a longer
  1500.      identifier.  */
  1501.   if (isalpha(*p) || *p == '_' || *p == '$' || *p == '\0')
  1502.     return *end;
  1503.  
  1504.   /* Allow some whitespace between `operator' and the operator symbol.  */
  1505.   while (*p == ' ' || *p == '\t')
  1506.     p++;
  1507.  
  1508.   /* Recognize 'operator TYPENAME'. */
  1509.  
  1510.   if (isalpha(*p) || *p == '_' || *p == '$')
  1511.     {
  1512.       register char *q = p+1;
  1513.       while (isalnum(*q) || *q == '_' || *q == '$')
  1514.     q++;
  1515.       *end = q;
  1516.       return p;
  1517.     }
  1518.  
  1519.   switch (*p)
  1520.     {
  1521.     case '!':
  1522.     case '=':
  1523.     case '*':
  1524.     case '/':
  1525.     case '%':
  1526.     case '^':
  1527.       if (p[1] == '=')
  1528.     *end = p+2;
  1529.       else
  1530.     *end = p+1;
  1531.       return p;
  1532.     case '<':
  1533.     case '>':
  1534.     case '+':
  1535.     case '-':
  1536.     case '&':
  1537.     case '|':
  1538.       if (p[1] == '=' || p[1] == p[0])
  1539.     *end = p+2;
  1540.       else
  1541.     *end = p+1;
  1542.       return p;
  1543.     case '~':
  1544.     case ',':
  1545.       *end = p+1;
  1546.       return p;
  1547.     case '(':
  1548.       if (p[1] != ')')
  1549.     error ("`operator ()' must be specified without whitespace in `()'");
  1550.       *end = p+2;
  1551.       return p;
  1552.     case '?':
  1553.       if (p[1] != ':')
  1554.     error ("`operator ?:' must be specified without whitespace in `?:'");
  1555.       *end = p+2;
  1556.       return p;
  1557.     case '[':
  1558.       if (p[1] != ']')
  1559.     error ("`operator []' must be specified without whitespace in `[]'");
  1560.       *end = p+2;
  1561.       return p;
  1562.     default:
  1563.       error ("`operator %s' not supported", p);
  1564.       break;
  1565.     }
  1566.   *end = "";
  1567.   return *end;
  1568. }
  1569.  
  1570. /* Recursive helper function for decode_line_1.
  1571.  * Look for methods named NAME in type T.
  1572.  * Return number of matches.
  1573.  * Put matches in SYM_ARR (which better be big enough!).
  1574.  * These allocations seem to define "big enough":
  1575.  * sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
  1576.  * Note that this function is g++ specific.
  1577.  */
  1578.  
  1579. int
  1580. find_methods (t, name, sym_arr)
  1581.      struct type *t;
  1582.      char *name;
  1583.      struct symbol **sym_arr;
  1584. {
  1585.   int i1 = 0;
  1586.   int ibase;
  1587.   struct symbol *sym_class;
  1588.   char *class_name = type_name_no_tag (t);
  1589.   /* Ignore this class if it doesn't have a name.  This is ugly, but
  1590.      unless we figure out how to get the physname without the name of
  1591.      the class, then the loop can't do any good.  */
  1592.   if (class_name
  1593.       && (sym_class = lookup_symbol (class_name,
  1594.                      (struct block *)NULL,
  1595.                      STRUCT_NAMESPACE,
  1596.                      (int *)NULL,
  1597.                      (struct symtab **)NULL)))
  1598.     {
  1599.       int method_counter;
  1600.       /* FIXME: Shouldn't this just be check_stub_type (t)?  */
  1601.       t = SYMBOL_TYPE (sym_class);
  1602.       for (method_counter = TYPE_NFN_FIELDS (t) - 1;
  1603.        method_counter >= 0;
  1604.        --method_counter)
  1605.     {
  1606.       int field_counter;
  1607.       struct fn_field *f = TYPE_FN_FIELDLIST1 (t, method_counter);
  1608.       char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
  1609.       char dem_opname[64];
  1610.  
  1611.           if (strncmp(method_name, "__", 2)==0 ||
  1612.         strncmp(method_name, "op", 2)==0 ||
  1613.         strncmp(method_name, "type", 4)==0 )
  1614.         {
  1615.           if (cplus_demangle_opname(method_name, dem_opname, DMGL_ANSI))
  1616.             method_name = dem_opname;
  1617.           else if (cplus_demangle_opname(method_name, dem_opname, 0))
  1618.             method_name = dem_opname; 
  1619.         }
  1620.       if (STREQ (name, method_name))
  1621.         /* Find all the fields with that name.  */
  1622.         for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
  1623.          field_counter >= 0;
  1624.          --field_counter)
  1625.           {
  1626.         char *phys_name;
  1627.         if (TYPE_FN_FIELD_STUB (f, field_counter))
  1628.           check_stub_method (t, method_counter, field_counter);
  1629.         phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
  1630.         /* Destructor is handled by caller, dont add it to the list */
  1631.         if (DESTRUCTOR_PREFIX_P (phys_name))
  1632.           continue;
  1633.  
  1634.         /* FIXME: Why are we looking this up in the
  1635.            SYMBOL_BLOCK_VALUE (sym_class)?  It is intended as a hook
  1636.            for nested types?  If so, it should probably hook to the
  1637.            type, not the symbol.  mipsread.c is the only symbol
  1638.            reader which sets the SYMBOL_BLOCK_VALUE for types, and
  1639.            this is not documented in symtab.h.  -26Aug93.  */
  1640.  
  1641.         sym_arr[i1] = lookup_symbol (phys_name,
  1642.                          SYMBOL_BLOCK_VALUE (sym_class),
  1643.                          VAR_NAMESPACE,
  1644.                          (int *) NULL,
  1645.                          (struct symtab **) NULL);
  1646.         if (sym_arr[i1]) i1++;
  1647.         else
  1648.           {
  1649.             fputs_filtered("(Cannot find method ", gdb_stdout);
  1650.             fprintf_symbol_filtered (gdb_stdout, phys_name,
  1651.                          language_cplus,
  1652.                          DMGL_PARAMS | DMGL_ANSI);
  1653.             fputs_filtered(" - possibly inlined.)\n", gdb_stdout);
  1654.           }
  1655.           }
  1656.     }
  1657.     }
  1658.  
  1659.   /* Only search baseclasses if there is no match yet, since names in
  1660.      derived classes override those in baseclasses.
  1661.  
  1662.      FIXME: The above is not true; it is only true of member functions
  1663.      if they have the same number of arguments (??? - section 13.1 of the
  1664.      ARM says the function members are not in the same scope but doesn't
  1665.      really spell out the rules in a way I understand.  In any case, if
  1666.      the number of arguments differ this is a case in which we can overload
  1667.      rather than hiding without any problem, and gcc 2.4.5 does overload
  1668.      rather than hiding in this case).  */
  1669.  
  1670.   if (i1)
  1671.     return i1;
  1672.   for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
  1673.     i1 += find_methods(TYPE_BASECLASS(t, ibase), name,
  1674.                sym_arr + i1);
  1675.   return i1;
  1676. }
  1677.  
  1678. /* Helper function for decode_line_1.
  1679.    Build a canonical line spec in CANONICAL if it is non-NULL and if
  1680.    the SAL has a symtab.
  1681.    If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
  1682.    If SYMNAME is NULL the line number from SAL is used and the canonical
  1683.    line spec is `filename:linenum'.  */
  1684.  
  1685. static void
  1686. build_canonical_line_spec (sal, symname, canonical)
  1687.      struct symtab_and_line *sal;
  1688.      char *symname;
  1689.      char ***canonical;
  1690. {
  1691.   char **canonical_arr;
  1692.   char *canonical_name;
  1693.   char *filename;
  1694.   struct symtab *s = sal->symtab;
  1695.  
  1696.   if (s == (struct symtab *)NULL
  1697.       || s->filename == (char *)NULL
  1698.       || canonical == (char ***)NULL)
  1699.     return;
  1700.  
  1701.   canonical_arr = (char **) xmalloc (sizeof (char *));
  1702.   *canonical = canonical_arr;
  1703.  
  1704.   filename = s->filename;
  1705.   if (symname != NULL)
  1706.     {
  1707.       canonical_name = xmalloc (strlen (filename) + strlen (symname) + 2);
  1708.       sprintf (canonical_name, "%s:%s", filename, symname);
  1709.     }
  1710.   else
  1711.     {
  1712.       canonical_name = xmalloc (strlen (filename) + 30);
  1713.       sprintf (canonical_name, "%s:%d", filename, sal->line);
  1714.     }
  1715.   canonical_arr[0] = canonical_name;
  1716. }
  1717.  
  1718. /* Parse a string that specifies a line number.
  1719.    Pass the address of a char * variable; that variable will be
  1720.    advanced over the characters actually parsed.
  1721.  
  1722.    The string can be:
  1723.  
  1724.    LINENUM -- that line number in current file.  PC returned is 0.
  1725.    FILE:LINENUM -- that line in that file.  PC returned is 0.
  1726.    FUNCTION -- line number of openbrace of that function.
  1727.       PC returned is the start of the function.
  1728.    VARIABLE -- line number of definition of that variable.
  1729.       PC returned is 0.
  1730.    FILE:FUNCTION -- likewise, but prefer functions in that file.
  1731.    *EXPR -- line in which address EXPR appears.
  1732.  
  1733.    FUNCTION may be an undebuggable function found in minimal symbol table.
  1734.  
  1735.    If the argument FUNFIRSTLINE is nonzero, we want the first line
  1736.    of real code inside a function when a function is specified.
  1737.  
  1738.    DEFAULT_SYMTAB specifies the file to use if none is specified.
  1739.    It defaults to current_source_symtab.
  1740.    DEFAULT_LINE specifies the line number to use for relative
  1741.    line numbers (that start with signs).  Defaults to current_source_line.
  1742.    If CANONICAL is non-NULL, store an array of strings containing the canonical
  1743.    line specs there if necessary. Currently overloaded member functions and
  1744.    line numbers or static functions without a filename yield a canonical
  1745.    line spec. The array and the line spec strings are allocated on the heap,
  1746.    it is the callers responsibility to free them.
  1747.  
  1748.    Note that it is possible to return zero for the symtab
  1749.    if no file is validly specified.  Callers must check that.
  1750.    Also, the line number returned may be invalid.  */
  1751.  
  1752. /* We allow single quotes in various places.  This is a hideous
  1753.    kludge, which exists because the completer can't yet deal with the
  1754.    lack of single quotes.  FIXME: write a linespec_completer which we
  1755.    can use as appropriate instead of make_symbol_completion_list.  */
  1756.  
  1757. struct symtabs_and_lines
  1758. decode_line_1 (argptr, funfirstline, default_symtab, default_line, canonical)
  1759.      char **argptr;
  1760.      int funfirstline;
  1761.      struct symtab *default_symtab;
  1762.      int default_line;
  1763.      char ***canonical;
  1764. {
  1765.   struct symtabs_and_lines values;
  1766. #ifdef HPPA_COMPILER_BUG
  1767.   /* FIXME: The native HP 9000/700 compiler has a bug which appears
  1768.      when optimizing this file with target i960-vxworks.  I haven't
  1769.      been able to construct a simple test case.  The problem is that
  1770.      in the second call to SKIP_PROLOGUE below, the compiler somehow
  1771.      does not realize that the statement val = find_pc_line (...) will
  1772.      change the values of the fields of val.  It extracts the elements
  1773.      into registers at the top of the block, and does not update the
  1774.      registers after the call to find_pc_line.  You can check this by
  1775.      inserting a printf at the end of find_pc_line to show what values
  1776.      it is returning for val.pc and val.end and another printf after
  1777.      the call to see what values the function actually got (remember,
  1778.      this is compiling with cc -O, with this patch removed).  You can
  1779.      also examine the assembly listing: search for the second call to
  1780.      skip_prologue; the LDO statement before the next call to
  1781.      find_pc_line loads the address of the structure which
  1782.      find_pc_line will return; if there is a LDW just before the LDO,
  1783.      which fetches an element of the structure, then the compiler
  1784.      still has the bug.
  1785.  
  1786.      Setting val to volatile avoids the problem.  We must undef
  1787.      volatile, because the HPPA native compiler does not define
  1788.      __STDC__, although it does understand volatile, and so volatile
  1789.      will have been defined away in defs.h.  */
  1790. #undef volatile
  1791.   volatile struct symtab_and_line val;
  1792. #define volatile /*nothing*/
  1793. #else
  1794.   struct symtab_and_line val;
  1795. #endif
  1796.   register char *p, *p1;
  1797.   char *q, *q1, *pp;
  1798.   register struct symtab *s;
  1799.  
  1800.   register struct symbol *sym;
  1801.   /* The symtab that SYM was found in.  */
  1802.   struct symtab *sym_symtab;
  1803.  
  1804.   register CORE_ADDR pc;
  1805.   register struct minimal_symbol *msymbol;
  1806.   char *copy;
  1807.   struct symbol *sym_class;
  1808.   int i1;
  1809.   int is_quoted, has_parens;
  1810.   struct symbol **sym_arr;
  1811.   struct type *t;
  1812.   char *saved_arg = *argptr;
  1813.   extern char *gdb_completer_quote_characters;
  1814.   
  1815.   /* Defaults have defaults.  */
  1816.  
  1817.   if (default_symtab == 0)
  1818.     {
  1819.       default_symtab = current_source_symtab;
  1820.       default_line = current_source_line;
  1821.     }
  1822.  
  1823.   /* See if arg is *PC */
  1824.  
  1825.   if (**argptr == '*')
  1826.     {
  1827.       if (**argptr == '*')
  1828.     {
  1829.       (*argptr)++;
  1830.     }
  1831.       pc = parse_and_eval_address_1 (argptr);
  1832.       values.sals = (struct symtab_and_line *)
  1833.     xmalloc (sizeof (struct symtab_and_line));
  1834.       values.nelts = 1;
  1835.       values.sals[0] = find_pc_line (pc, 0);
  1836.       values.sals[0].pc = pc;
  1837.       build_canonical_line_spec (values.sals, NULL, canonical);
  1838.       return values;
  1839.     }
  1840.  
  1841.   /* Maybe arg is FILE : LINENUM or FILE : FUNCTION */
  1842.  
  1843.   s = NULL;
  1844.   is_quoted = (strchr(gdb_completer_quote_characters, **argptr) != NULL);
  1845.   has_parens = (( pp = strchr(*argptr, '(')) != NULL  &&
  1846.          (pp = strchr(pp, ')')) != NULL);
  1847.  
  1848.   for (p = *argptr; *p; p++)
  1849.     {
  1850.       if (p[0] == '<') 
  1851.     {
  1852.       while(!++p && *p != '>');
  1853.       if (!p)
  1854.         {
  1855.           /* FIXME: Why warning() and then return_to_top_level?
  1856.          What's wrong with error()?  */
  1857.           warning("non-matching '<' and '>' in command");
  1858.           return_to_top_level (RETURN_ERROR);
  1859.         }
  1860.     }
  1861.       if (p[0] == ':' || p[0] == ' ' || p[0] == '\t')
  1862.     break;
  1863.     }
  1864.   while (p[0] == ' ' || p[0] == '\t') p++;
  1865.  
  1866.   if ((p[0] == ':') && !has_parens)
  1867.     {
  1868.  
  1869.       /*  C++  */
  1870.       if (is_quoted) *argptr = *argptr+1;
  1871.       if (p[1] ==':')
  1872.     {
  1873.       /* Extract the class name.  */
  1874.       p1 = p;
  1875.       while (p != *argptr && p[-1] == ' ') --p;
  1876.       copy = (char *) alloca (p - *argptr + 1);
  1877.       memcpy (copy, *argptr, p - *argptr);
  1878.       copy[p - *argptr] = 0;
  1879.  
  1880.       /* Discard the class name from the arg.  */
  1881.       p = p1 + 2;
  1882.       while (*p == ' ' || *p == '\t') p++;
  1883.       *argptr = p;
  1884.  
  1885.       sym_class = lookup_symbol (copy, 0, STRUCT_NAMESPACE, 0, 
  1886.                      (struct symtab **)NULL);
  1887.        
  1888.       if (sym_class &&
  1889.           (   TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_STRUCT
  1890.            || TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_UNION))
  1891.         {
  1892.           /* Arg token is not digits => try it as a function name
  1893.          Find the next token(everything up to end or next blank). */
  1894.           if (strchr(gdb_completer_quote_characters, **argptr) != NULL)
  1895.         {
  1896.           p = skip_quoted(*argptr);
  1897.           *argptr = *argptr + 1;
  1898.         }
  1899.           else
  1900.         {
  1901.               p = *argptr;
  1902.               while (*p && *p!=' ' && *p!='\t' && *p!=',' && *p!=':') p++;
  1903.         }
  1904. /*
  1905.           q = operator_chars (*argptr, &q1);
  1906.           if (q1 - q)
  1907.         {
  1908.           char *opname;
  1909.           char *tmp = alloca (q1 - q + 1);
  1910.           memcpy (tmp, q, q1 - q);
  1911.           tmp[q1 - q] = '\0';
  1912.           opname = cplus_mangle_opname (tmp, DMGL_ANSI);
  1913.           if (opname == NULL)
  1914.             {
  1915.               warning ("no mangling for \"%s\"", tmp);
  1916.               cplusplus_hint (saved_arg);
  1917.               return_to_top_level (RETURN_ERROR);
  1918.             }
  1919.           copy = (char*) alloca (3 + strlen(opname));
  1920.           sprintf (copy, "__%s", opname);
  1921.           p = q1;
  1922.         }
  1923.           else
  1924. */
  1925.         {
  1926.           copy = (char *) alloca (p - *argptr + 1 );
  1927.           memcpy (copy, *argptr, p - *argptr);
  1928.           copy[p - *argptr] = '\0';
  1929.           if (strchr(gdb_completer_quote_characters, copy[p-*argptr-1]) != NULL)
  1930.             copy[p - *argptr -1] = '\0';
  1931.         }
  1932.  
  1933.           /* no line number may be specified */
  1934.           while (*p == ' ' || *p == '\t') p++;
  1935.           *argptr = p;
  1936.  
  1937.           sym = 0;
  1938.           i1 = 0;        /*  counter for the symbol array */
  1939.           t = SYMBOL_TYPE (sym_class);
  1940.           sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
  1941.  
  1942.           /* Cfront objects don't have fieldlists.  */
  1943.           if (destructor_name_p (copy, t) && TYPE_FN_FIELDLISTS (t) != NULL)
  1944.         {
  1945.           /* destructors are a special case.  */
  1946.           struct fn_field *f = TYPE_FN_FIELDLIST1 (t, 0);
  1947.           int len = TYPE_FN_FIELDLIST_LENGTH (t, 0) - 1;
  1948.           /* gcc 1.x puts destructor in last field,
  1949.              gcc 2.x puts destructor in first field.  */
  1950.           char *phys_name = TYPE_FN_FIELD_PHYSNAME (f, len);
  1951.           if (!DESTRUCTOR_PREFIX_P (phys_name))
  1952.             {
  1953.               phys_name = TYPE_FN_FIELD_PHYSNAME (f, 0);
  1954.               if (!DESTRUCTOR_PREFIX_P (phys_name))
  1955.             phys_name = "";
  1956.             }
  1957.           sym_arr[i1] =
  1958.             lookup_symbol (phys_name, SYMBOL_BLOCK_VALUE (sym_class),
  1959.                    VAR_NAMESPACE, 0, (struct symtab **)NULL);
  1960.           if (sym_arr[i1]) i1++;
  1961.         }
  1962.           else
  1963.         i1 = find_methods (t, copy, sym_arr);
  1964.           if (i1 == 1)
  1965.         {
  1966.           /* There is exactly one field with that name.  */
  1967.           sym = sym_arr[0];
  1968.  
  1969.           if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
  1970.             {
  1971.               /* Arg is the name of a function */
  1972.               pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
  1973.               if (funfirstline)
  1974.             {
  1975.               pc += FUNCTION_START_OFFSET;
  1976.               SKIP_PROLOGUE (pc);
  1977.             }
  1978.               values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  1979.               values.nelts = 1;
  1980.               values.sals[0] = find_pc_line (pc, 0);
  1981.               values.sals[0].pc = (values.sals[0].end && values.sals[0].pc != pc) ? values.sals[0].end : pc;
  1982.             }
  1983.           else
  1984.             {
  1985.               values.nelts = 0;
  1986.             }
  1987.           return values;
  1988.         }
  1989.           if (i1 > 0)
  1990.         {
  1991.           /* There is more than one field with that name
  1992.              (overloaded).  Ask the user which one to use.  */
  1993.           return decode_line_2 (sym_arr, i1, funfirstline, canonical);
  1994.         }
  1995.           else
  1996.         {
  1997.           char *tmp;
  1998.  
  1999.           if (OPNAME_PREFIX_P (copy))
  2000.             {
  2001.               tmp = (char *)alloca (strlen (copy+3) + 9);
  2002.               strcpy (tmp, "operator ");
  2003.               strcat (tmp, copy+3);
  2004.             }
  2005.           else
  2006.             tmp = copy;
  2007.           if (tmp[0] == '~')
  2008.             warning ("the class `%s' does not have destructor defined",
  2009.                  SYMBOL_SOURCE_NAME(sym_class));
  2010.           else
  2011.             warning ("the class %s does not have any method named %s",
  2012.                  SYMBOL_SOURCE_NAME(sym_class), tmp);
  2013.           cplusplus_hint (saved_arg);
  2014.           return_to_top_level (RETURN_ERROR);
  2015.         }
  2016.         }
  2017.       else
  2018.         {
  2019.           /* The quotes are important if copy is empty.  */
  2020.           warning ("can't find class, struct, or union named \"%s\"",
  2021.                copy);
  2022.           cplusplus_hint (saved_arg);
  2023.           return_to_top_level (RETURN_ERROR);
  2024.         }
  2025.     }
  2026.       /*  end of C++  */
  2027.  
  2028.  
  2029.       /* Extract the file name.  */
  2030.       p1 = p;
  2031.       while (p != *argptr && p[-1] == ' ') --p;
  2032.       copy = (char *) alloca (p - *argptr + 1);
  2033.       memcpy (copy, *argptr, p - *argptr);
  2034.       copy[p - *argptr] = 0;
  2035.  
  2036.       /* Find that file's data.  */
  2037.       s = lookup_symtab (copy);
  2038.       if (s == 0)
  2039.     {
  2040.       if (!have_full_symbols () && !have_partial_symbols ())
  2041.         error (no_symtab_msg);
  2042.       error ("No source file named %s.", copy);
  2043.     }
  2044.  
  2045.       /* Discard the file name from the arg.  */
  2046.       p = p1 + 1;
  2047.       while (*p == ' ' || *p == '\t') p++;
  2048.       *argptr = p;
  2049.     }
  2050.  
  2051.   /* S is specified file's symtab, or 0 if no file specified.
  2052.      arg no longer contains the file name.  */
  2053.  
  2054.   /* Check whether arg is all digits (and sign) */
  2055.  
  2056.   q = *argptr;
  2057.   if (*q == '-' || *q == '+') q++;
  2058.   while (*q >= '0' && *q <= '9')
  2059.     q++;
  2060.  
  2061.   if (q != *argptr && (*q == 0 || *q == ' ' || *q == '\t' || *q == ','))
  2062.     {
  2063.       /* We found a token consisting of all digits -- at least one digit.  */
  2064.       enum sign {none, plus, minus} sign = none;
  2065.  
  2066.       /* We might need a canonical line spec if no file was specified.  */
  2067.       int need_canonical = (s == 0) ? 1 : 0;
  2068.  
  2069.       /* This is where we need to make sure that we have good defaults.
  2070.      We must guarantee that this section of code is never executed
  2071.      when we are called with just a function name, since
  2072.      select_source_symtab calls us with such an argument  */
  2073.  
  2074.       if (s == 0 && default_symtab == 0)
  2075.     {
  2076.       select_source_symtab (0);
  2077.       default_symtab = current_source_symtab;
  2078.       default_line = current_source_line;
  2079.     }
  2080.  
  2081.       if (**argptr == '+')
  2082.     sign = plus, (*argptr)++;
  2083.       else if (**argptr == '-')
  2084.     sign = minus, (*argptr)++;
  2085.       val.line = atoi (*argptr);
  2086.       switch (sign)
  2087.     {
  2088.     case plus:
  2089.       if (q == *argptr)
  2090.         val.line = 5;
  2091.       if (s == 0)
  2092.         val.line = default_line + val.line;
  2093.       break;
  2094.     case minus:
  2095.       if (q == *argptr)
  2096.         val.line = 15;
  2097.       if (s == 0)
  2098.         val.line = default_line - val.line;
  2099.       else
  2100.         val.line = 1;
  2101.       break;
  2102.     case none:
  2103.       break;    /* No need to adjust val.line.  */
  2104.     }
  2105.  
  2106.       while (*q == ' ' || *q == '\t') q++;
  2107.       *argptr = q;
  2108.       if (s == 0)
  2109.     s = default_symtab;
  2110.       val.symtab = s;
  2111.       val.pc = 0;
  2112.       values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  2113.       values.sals[0] = val;
  2114.       values.nelts = 1;
  2115.       if (need_canonical)
  2116.     build_canonical_line_spec (values.sals, NULL, canonical);
  2117.       return values;
  2118.     }
  2119.  
  2120.   /* Arg token is not digits => try it as a variable name
  2121.      Find the next token (everything up to end or next whitespace).  */
  2122.  
  2123.   if (is_quoted)
  2124.     {
  2125.       p = skip_quoted (*argptr);
  2126.       if (p[-1] != '\'')
  2127.         error ("Unmatched single quote.");
  2128.     }
  2129.   else if (has_parens)
  2130.     {
  2131.       p = pp+1;
  2132.     }
  2133.   else 
  2134.     {
  2135.       p = skip_quoted(*argptr);
  2136.     }
  2137.  
  2138.   copy = (char *) alloca (p - *argptr + 1);
  2139.   memcpy (copy, *argptr, p - *argptr);
  2140.   copy[p - *argptr] = '\0';
  2141.   if ((copy[0] == copy [p - *argptr - 1])
  2142.       && strchr (gdb_completer_quote_characters, copy[0]) != NULL)
  2143.     {
  2144.       copy [p - *argptr - 1] = '\0';
  2145.       copy++;
  2146.     }
  2147.   while (*p == ' ' || *p == '\t') p++;
  2148.   *argptr = p;
  2149.  
  2150.   /* Look up that token as a variable.
  2151.      If file specified, use that file's per-file block to start with.  */
  2152.  
  2153.   sym = lookup_symbol (copy,
  2154.                (s ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
  2155.             : get_selected_block ()),
  2156.                VAR_NAMESPACE, 0, &sym_symtab);
  2157.  
  2158.   if (sym != NULL)
  2159.     {
  2160.       if (SYMBOL_CLASS (sym) == LOC_BLOCK)
  2161.     {
  2162.       /* Arg is the name of a function */
  2163.       pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
  2164.       if (funfirstline)
  2165.         {
  2166.           pc += FUNCTION_START_OFFSET;
  2167.           SKIP_PROLOGUE (pc);
  2168.         }
  2169.       val = find_pc_line (pc, 0);
  2170. #ifdef PROLOGUE_FIRSTLINE_OVERLAP
  2171.       /* Convex: no need to suppress code on first line, if any */
  2172.       val.pc = pc;
  2173. #else
  2174.       /* Check if SKIP_PROLOGUE left us in mid-line, and the next
  2175.          line is still part of the same function.  */
  2176.       if (val.pc != pc
  2177.           && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= val.end
  2178.           && val.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
  2179.         {
  2180.           /* First pc of next line */
  2181.           pc = val.end;
  2182.           /* Recalculate the line number (might not be N+1).  */
  2183.           val = find_pc_line (pc, 0);
  2184.         }
  2185.       val.pc = pc;
  2186. #endif
  2187.       values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  2188.       values.sals[0] = val;
  2189.       values.nelts = 1;
  2190.  
  2191.       /* Don't use the SYMBOL_LINE; if used at all it points to
  2192.          the line containing the parameters or thereabouts, not
  2193.          the first line of code.  */
  2194.  
  2195.       /* We might need a canonical line spec if it is a static
  2196.          function.  */
  2197.       if (s == 0)
  2198.         {
  2199.           struct blockvector *bv = BLOCKVECTOR (sym_symtab);
  2200.           struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  2201.           if (lookup_block_symbol (b, copy, VAR_NAMESPACE) != NULL)
  2202.         build_canonical_line_spec (values.sals, copy, canonical);
  2203.         }
  2204.       return values;
  2205.     }
  2206.       else if (SYMBOL_LINE (sym) != 0)
  2207.     {
  2208.       /* We know its line number.  */
  2209.       values.sals = (struct symtab_and_line *)
  2210.         xmalloc (sizeof (struct symtab_and_line));
  2211.       values.nelts = 1;
  2212.       memset (&values.sals[0], 0, sizeof (values.sals[0]));
  2213.       values.sals[0].symtab = sym_symtab;
  2214.       values.sals[0].line = SYMBOL_LINE (sym);
  2215.       return values;
  2216.     }
  2217.       else
  2218.     /* This can happen if it is compiled with a compiler which doesn't
  2219.        put out line numbers for variables.  */
  2220.     /* FIXME: Shouldn't we just set .line and .symtab to zero and
  2221.        return?  For example, "info line foo" could print the address.  */
  2222.     error ("Line number not known for symbol \"%s\"", copy);
  2223.     }
  2224.  
  2225.   msymbol = lookup_minimal_symbol (copy, (struct objfile *) NULL);
  2226.   if (msymbol != NULL)
  2227.     {
  2228.       val.symtab = 0;
  2229.       val.line = 0;
  2230.       val.pc = SYMBOL_VALUE_ADDRESS (msymbol);
  2231.       if (funfirstline)
  2232.     {
  2233.       val.pc += FUNCTION_START_OFFSET;
  2234.       SKIP_PROLOGUE (val.pc);
  2235.     }
  2236.       values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  2237.       values.sals[0] = val;
  2238.       values.nelts = 1;
  2239.       return values;
  2240.     }
  2241.  
  2242.   if (!have_full_symbols () &&
  2243.       !have_partial_symbols () && !have_minimal_symbols ())
  2244.     error (no_symtab_msg);
  2245.  
  2246.   error ("Function \"%s\" not defined.", copy);
  2247.   return values;    /* for lint */
  2248. }
  2249.  
  2250. struct symtabs_and_lines
  2251. decode_line_spec (string, funfirstline)
  2252.      char *string;
  2253.      int funfirstline;
  2254. {
  2255.   struct symtabs_and_lines sals;
  2256.   if (string == 0)
  2257.     error ("Empty line specification.");
  2258.   sals = decode_line_1 (&string, funfirstline,
  2259.             current_source_symtab, current_source_line,
  2260.             (char ***)NULL);
  2261.   if (*string)
  2262.     error ("Junk at end of line specification: %s", string);
  2263.   return sals;
  2264. }
  2265.  
  2266. /* Given a list of NELTS symbols in SYM_ARR, return a list of lines to
  2267.    operate on (ask user if necessary).
  2268.    If CANONICAL is non-NULL return a corresponding array of mangled names
  2269.    as canonical line specs there.  */
  2270.  
  2271. static struct symtabs_and_lines
  2272. decode_line_2 (sym_arr, nelts, funfirstline, canonical)
  2273.      struct symbol *sym_arr[];
  2274.      int nelts;
  2275.      int funfirstline;
  2276.      char ***canonical;
  2277. {
  2278.   struct symtabs_and_lines values, return_values;
  2279.   register CORE_ADDR pc;
  2280.   char *args, *arg1;
  2281.   int i;
  2282.   char *prompt;
  2283.   char *symname;
  2284.   struct cleanup *old_chain;
  2285.   char **canonical_arr = (char **)NULL;
  2286.  
  2287.   values.sals = (struct symtab_and_line *) alloca (nelts * sizeof(struct symtab_and_line));
  2288.   return_values.sals = (struct symtab_and_line *) xmalloc (nelts * sizeof(struct symtab_and_line));
  2289.   old_chain = make_cleanup (free, return_values.sals);
  2290.  
  2291.   if (canonical)
  2292.     {
  2293.       canonical_arr = (char **) xmalloc (nelts * sizeof (char *));
  2294.       make_cleanup (free, canonical_arr);
  2295.       memset (canonical_arr, 0, nelts * sizeof (char *));
  2296.       *canonical = canonical_arr;
  2297.     }
  2298.  
  2299.   i = 0;
  2300.   printf_unfiltered("[0] cancel\n[1] all\n");
  2301.   while (i < nelts)
  2302.     {
  2303.       if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
  2304.     {
  2305.       /* Arg is the name of a function */
  2306.       pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym_arr[i]));
  2307.       if (funfirstline)
  2308.         {
  2309.           pc += FUNCTION_START_OFFSET;
  2310.           SKIP_PROLOGUE (pc);
  2311.         }
  2312.       values.sals[i] = find_pc_line (pc, 0);
  2313.       values.sals[i].pc = (values.sals[i].end && values.sals[i].pc != pc) ?
  2314.                    values.sals[i].end                      :  pc;
  2315.       printf_unfiltered("[%d] %s at %s:%d\n", (i+2), SYMBOL_SOURCE_NAME (sym_arr[i]),
  2316.          values.sals[i].symtab->filename, values.sals[i].line);
  2317.     }
  2318.       else printf_unfiltered ("?HERE\n");
  2319.       i++;
  2320.     }
  2321.   
  2322.   if ((prompt = getenv ("PS2")) == NULL)
  2323.     {
  2324.       prompt = ">";
  2325.     }
  2326.   printf_unfiltered("%s ",prompt);
  2327.   gdb_flush(gdb_stdout);
  2328.  
  2329.   args = command_line_input ((char *) NULL, 0);
  2330.   
  2331.   if (args == 0 || *args == 0)
  2332.     error_no_arg ("one or more choice numbers");
  2333.  
  2334.   i = 0;
  2335.   while (*args)
  2336.     {
  2337.       int num;
  2338.  
  2339.       arg1 = args;
  2340.       while (*arg1 >= '0' && *arg1 <= '9') arg1++;
  2341.       if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
  2342.     error ("Arguments must be choice numbers.");
  2343.  
  2344.       num = atoi (args);
  2345.  
  2346.       if (num == 0)
  2347.     error ("cancelled");
  2348.       else if (num == 1)
  2349.     {
  2350.       if (canonical_arr)
  2351.         {
  2352.           for (i = 0; i < nelts; i++)
  2353.         {
  2354.               if (canonical_arr[i] == NULL)
  2355.             {
  2356.               symname = SYMBOL_NAME (sym_arr[i]);
  2357.                   canonical_arr[i] = savestring (symname, strlen (symname));
  2358.             }
  2359.         }
  2360.         }
  2361.       memcpy (return_values.sals, values.sals,
  2362.           (nelts * sizeof(struct symtab_and_line)));
  2363.       return_values.nelts = nelts;
  2364.       discard_cleanups (old_chain);
  2365.       return return_values;
  2366.     }
  2367.  
  2368.       if (num > nelts + 2)
  2369.     {
  2370.       printf_unfiltered ("No choice number %d.\n", num);
  2371.     }
  2372.       else
  2373.     {
  2374.       num -= 2;
  2375.       if (values.sals[num].pc)
  2376.         {
  2377.           if (canonical_arr)
  2378.         {
  2379.           symname = SYMBOL_NAME (sym_arr[num]);
  2380.           make_cleanup (free, symname);
  2381.           canonical_arr[i] = savestring (symname, strlen (symname));
  2382.         }
  2383.           return_values.sals[i++] = values.sals[num];
  2384.           values.sals[num].pc = 0;
  2385.         }
  2386.       else
  2387.         {
  2388.           printf_unfiltered ("duplicate request for %d ignored.\n", num);
  2389.         }
  2390.     }
  2391.  
  2392.       args = arg1;
  2393.       while (*args == ' ' || *args == '\t') args++;
  2394.     }
  2395.   return_values.nelts = i;
  2396.   discard_cleanups (old_chain);
  2397.   return return_values;
  2398. }
  2399.  
  2400.  
  2401. /* Slave routine for sources_info.  Force line breaks at ,'s.
  2402.    NAME is the name to print and *FIRST is nonzero if this is the first
  2403.    name printed.  Set *FIRST to zero.  */
  2404. static void
  2405. output_source_filename (name, first)
  2406.      char *name;
  2407.      int *first;
  2408. {
  2409.   /* Table of files printed so far.  Since a single source file can
  2410.      result in several partial symbol tables, we need to avoid printing
  2411.      it more than once.  Note: if some of the psymtabs are read in and
  2412.      some are not, it gets printed both under "Source files for which
  2413.      symbols have been read" and "Source files for which symbols will
  2414.      be read in on demand".  I consider this a reasonable way to deal
  2415.      with the situation.  I'm not sure whether this can also happen for
  2416.      symtabs; it doesn't hurt to check.  */
  2417.   static char **tab = NULL;
  2418.   /* Allocated size of tab in elements.
  2419.      Start with one 256-byte block (when using GNU malloc.c).
  2420.      24 is the malloc overhead when range checking is in effect.  */
  2421.   static int tab_alloc_size = (256 - 24) / sizeof (char *);
  2422.   /* Current size of tab in elements.  */
  2423.   static int tab_cur_size;
  2424.  
  2425.   char **p;
  2426.  
  2427.   if (*first)
  2428.     {
  2429.       if (tab == NULL)
  2430.     tab = (char **) xmalloc (tab_alloc_size * sizeof (*tab));
  2431.       tab_cur_size = 0;
  2432.     }
  2433.  
  2434.   /* Is NAME in tab?  */
  2435.   for (p = tab; p < tab + tab_cur_size; p++)
  2436.     if (STREQ (*p, name))
  2437.       /* Yes; don't print it again.  */
  2438.       return;
  2439.   /* No; add it to tab.  */
  2440.   if (tab_cur_size == tab_alloc_size)
  2441.     {
  2442.       tab_alloc_size *= 2;
  2443.       tab = (char **) xrealloc ((char *) tab, tab_alloc_size * sizeof (*tab));
  2444.     }
  2445.   tab[tab_cur_size++] = name;
  2446.  
  2447.   if (*first)
  2448.     {
  2449.       *first = 0;
  2450.     }
  2451.   else
  2452.     {
  2453.       printf_filtered (", ");
  2454.     }
  2455.  
  2456.   wrap_here ("");
  2457.   fputs_filtered (name, gdb_stdout);
  2458. }  
  2459.  
  2460. static void
  2461. sources_info (ignore, from_tty)
  2462.      char *ignore;
  2463.      int from_tty;
  2464. {
  2465.   register struct symtab *s;
  2466.   register struct partial_symtab *ps;
  2467.   register struct objfile *objfile;
  2468.   int first;
  2469.   
  2470.   if (!have_full_symbols () && !have_partial_symbols ())
  2471.     {
  2472.       error (no_symtab_msg);
  2473.     }
  2474.   
  2475.   printf_filtered ("Source files for which symbols have been read in:\n\n");
  2476.  
  2477.   first = 1;
  2478.   ALL_SYMTABS (objfile, s)
  2479.     {
  2480.       output_source_filename (s -> filename, &first);
  2481.     }
  2482.   printf_filtered ("\n\n");
  2483.   
  2484.   printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
  2485.  
  2486.   first = 1;
  2487.   ALL_PSYMTABS (objfile, ps)
  2488.     {
  2489.       if (!ps->readin)
  2490.     {
  2491.       output_source_filename (ps -> filename, &first);
  2492.     }
  2493.     }
  2494.   printf_filtered ("\n");
  2495. }
  2496.  
  2497. /* List all symbols (if REGEXP is NULL) or all symbols matching REGEXP.
  2498.    If CLASS is zero, list all symbols except functions, type names, and
  2499.              constants (enums).
  2500.    If CLASS is 1, list only functions.
  2501.    If CLASS is 2, list only type names.
  2502.    If CLASS is 3, list only method names.
  2503.  
  2504.    BPT is non-zero if we should set a breakpoint at the functions
  2505.    we find.  */
  2506.  
  2507. static void
  2508. list_symbols (regexp, class, bpt)
  2509.      char *regexp;
  2510.      int class;
  2511.      int bpt;
  2512. {
  2513.   register struct symtab *s;
  2514.   register struct partial_symtab *ps;
  2515.   register struct blockvector *bv;
  2516.   struct blockvector *prev_bv = 0;
  2517.   register struct block *b;
  2518.   register int i, j;
  2519.   register struct symbol *sym;
  2520.   struct partial_symbol *psym;
  2521.   struct objfile *objfile;
  2522.   struct minimal_symbol *msymbol;
  2523.   char *val;
  2524.   static char *classnames[]
  2525.     = {"variable", "function", "type", "method"};
  2526.   int found_in_file = 0;
  2527.   int found_misc = 0;
  2528.   static enum minimal_symbol_type types[]
  2529.     = {mst_data, mst_text, mst_abs, mst_unknown};
  2530.   static enum minimal_symbol_type types2[]
  2531.     = {mst_bss,  mst_text, mst_abs, mst_unknown};
  2532.   enum minimal_symbol_type ourtype = types[class];
  2533.   enum minimal_symbol_type ourtype2 = types2[class];
  2534.  
  2535.   if (regexp != NULL)
  2536.     {
  2537.       /* Make sure spacing is right for C++ operators.
  2538.      This is just a courtesy to make the matching less sensitive
  2539.      to how many spaces the user leaves between 'operator'
  2540.      and <TYPENAME> or <OPERATOR>. */
  2541.       char *opend;
  2542.       char *opname = operator_chars (regexp, &opend);
  2543.       if (*opname)
  2544.     {
  2545.           int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
  2546.       if (isalpha(*opname) || *opname == '_' || *opname == '$')
  2547.         {
  2548.           /* There should 1 space between 'operator' and 'TYPENAME'. */
  2549.           if (opname[-1] != ' ' || opname[-2] == ' ')
  2550.             fix = 1;
  2551.         }
  2552.       else
  2553.         {
  2554.           /* There should 0 spaces between 'operator' and 'OPERATOR'. */
  2555.           if (opname[-1] == ' ')
  2556.             fix = 0;
  2557.         }
  2558.       /* If wrong number of spaces, fix it. */
  2559.       if (fix >= 0)
  2560.         {
  2561.           char *tmp = (char*) alloca(opend-opname+10);
  2562.           sprintf(tmp, "operator%.*s%s", fix, " ", opname);
  2563.           regexp = tmp;
  2564.         }
  2565.         }
  2566.       
  2567.       if (0 != (val = re_comp (regexp)))
  2568.     error ("Invalid regexp (%s): %s", val, regexp);
  2569.     }
  2570.  
  2571.   /* Search through the partial symtabs *first* for all symbols
  2572.      matching the regexp.  That way we don't have to reproduce all of
  2573.      the machinery below. */
  2574.  
  2575.   ALL_PSYMTABS (objfile, ps)
  2576.     {
  2577.       struct partial_symbol *bound, *gbound, *sbound;
  2578.       int keep_going = 1;
  2579.       
  2580.       if (ps->readin) continue;
  2581.       
  2582.       gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
  2583.       sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
  2584.       bound = gbound;
  2585.       
  2586.       /* Go through all of the symbols stored in a partial
  2587.      symtab in one loop. */
  2588.       psym = objfile->global_psymbols.list + ps->globals_offset;
  2589.       while (keep_going)
  2590.     {
  2591.       if (psym >= bound)
  2592.         {
  2593.           if (bound == gbound && ps->n_static_syms != 0)
  2594.         {
  2595.           psym = objfile->static_psymbols.list + ps->statics_offset;
  2596.           bound = sbound;
  2597.         }
  2598.           else
  2599.         keep_going = 0;
  2600.           continue;
  2601.         }
  2602.       else
  2603.         {
  2604.           QUIT;
  2605.  
  2606.           /* If it would match (logic taken from loop below)
  2607.          load the file and go on to the next one */
  2608.           if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (psym))
  2609.           && ((class == 0 && SYMBOL_CLASS (psym) != LOC_TYPEDEF
  2610.                && SYMBOL_CLASS (psym) != LOC_BLOCK)
  2611.               || (class == 1 && SYMBOL_CLASS (psym) == LOC_BLOCK)
  2612.               || (class == 2 && SYMBOL_CLASS (psym) == LOC_TYPEDEF)
  2613.               || (class == 3 && SYMBOL_CLASS (psym) == LOC_BLOCK)))
  2614.         {
  2615.           PSYMTAB_TO_SYMTAB(ps);
  2616.           keep_going = 0;
  2617.         }
  2618.         }
  2619.       psym++;
  2620.     }
  2621.     }
  2622.  
  2623.   /* Here, we search through the minimal symbol tables for functions that
  2624.      match, and call find_pc_symtab on them to force their symbols to
  2625.      be read.  The symbol will then be found during the scan of symtabs
  2626.      below.  If find_pc_symtab fails, set found_misc so that we will
  2627.      rescan to print any matching symbols without debug info.  */
  2628.  
  2629.   if (class == 1)
  2630.     {
  2631.       ALL_MSYMBOLS (objfile, msymbol)
  2632.     {
  2633.       if (MSYMBOL_TYPE (msymbol) == ourtype ||
  2634.           MSYMBOL_TYPE (msymbol) == ourtype2)
  2635.         {
  2636.           if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
  2637.         {
  2638.           if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
  2639.             {
  2640.               found_misc = 1;
  2641.             }
  2642.         }
  2643.         }
  2644.     }
  2645.     }
  2646.  
  2647.   /* Printout here so as to get after the "Reading in symbols"
  2648.      messages which will be generated above.  */
  2649.   if (!bpt)
  2650.     printf_filtered (regexp
  2651.       ? "All %ss matching regular expression \"%s\":\n"
  2652.       : "All defined %ss:\n",
  2653.       classnames[class],
  2654.       regexp);
  2655.  
  2656.   ALL_SYMTABS (objfile, s)
  2657.     {
  2658.       found_in_file = 0;
  2659.       bv = BLOCKVECTOR (s);
  2660.       /* Often many files share a blockvector.
  2661.      Scan each blockvector only once so that
  2662.      we don't get every symbol many times.
  2663.      It happens that the first symtab in the list
  2664.      for any given blockvector is the main file.  */
  2665.       if (bv != prev_bv)
  2666.     for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
  2667.       {
  2668.         b = BLOCKVECTOR_BLOCK (bv, i);
  2669.         /* Skip the sort if this block is always sorted.  */
  2670.         if (!BLOCK_SHOULD_SORT (b))
  2671.           sort_block_syms (b);
  2672.         for (j = 0; j < BLOCK_NSYMS (b); j++)
  2673.           {
  2674.         QUIT;
  2675.         sym = BLOCK_SYM (b, j);
  2676.         if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (sym))
  2677.             && ((class == 0 && SYMBOL_CLASS (sym) != LOC_TYPEDEF
  2678.              && SYMBOL_CLASS (sym) != LOC_BLOCK
  2679.              && SYMBOL_CLASS (sym) != LOC_CONST)
  2680.             || (class == 1 && SYMBOL_CLASS (sym) == LOC_BLOCK)
  2681.             || (class == 2 && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
  2682.             || (class == 3 && SYMBOL_CLASS (sym) == LOC_BLOCK)))
  2683.           {
  2684.             if (bpt)
  2685.               {
  2686.             /* Set a breakpoint here, if it's a function */
  2687.             if (class == 1)
  2688.               {
  2689.                 /* There may be more than one function with the
  2690.                    same name but in different files.  In order to
  2691.                    set breakpoints on all of them, we must give
  2692.                    both the file name and the function name to
  2693.                    break_command.  */
  2694.                 char *string =
  2695.                   (char *) alloca (strlen (s->filename)
  2696.                            + strlen (SYMBOL_NAME(sym))
  2697.                            + 2);
  2698.                 strcpy (string, s->filename);
  2699.                 strcat (string, ":");
  2700.                 strcat (string, SYMBOL_NAME(sym));
  2701.                 break_command (string, 0);
  2702.               }
  2703.               }
  2704.             else if (!found_in_file)
  2705.               {
  2706.             fputs_filtered ("\nFile ", gdb_stdout);
  2707.             fputs_filtered (s->filename, gdb_stdout);
  2708.             fputs_filtered (":\n", gdb_stdout);
  2709.               }
  2710.             found_in_file = 1;
  2711.             
  2712.             if (class != 2 && i == STATIC_BLOCK)
  2713.               printf_filtered ("static ");
  2714.             
  2715.             /* Typedef that is not a C++ class */
  2716.             if (class == 2
  2717.             && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE)
  2718.               c_typedef_print (SYMBOL_TYPE(sym), sym, gdb_stdout);
  2719.             /* variable, func, or typedef-that-is-c++-class */
  2720.             else if (class < 2 || 
  2721.                  (class == 2 && 
  2722.                   SYMBOL_NAMESPACE(sym) == STRUCT_NAMESPACE))
  2723.               {
  2724.             type_print (SYMBOL_TYPE (sym),
  2725.                     (SYMBOL_CLASS (sym) == LOC_TYPEDEF
  2726.                      ? "" : SYMBOL_SOURCE_NAME (sym)),
  2727.                     gdb_stdout, 0);
  2728.             
  2729.             printf_filtered (";\n");
  2730.               }
  2731.             else
  2732.               {
  2733. # if 0  /* FIXME, why is this zapped out? */
  2734.             char buf[1024];
  2735.             c_type_print_base (TYPE_FN_FIELD_TYPE(t, i),
  2736.                        gdb_stdout, 0, 0); 
  2737.             c_type_print_varspec_prefix (TYPE_FN_FIELD_TYPE(t, i),
  2738.                              gdb_stdout, 0); 
  2739.             sprintf (buf, " %s::", type_name_no_tag (t));
  2740.             cp_type_print_method_args (TYPE_FN_FIELD_ARGS (t, i),
  2741.                            buf, name, gdb_stdout);
  2742. # endif
  2743.               }
  2744.           }
  2745.           }
  2746.       }
  2747.       prev_bv = bv;
  2748.     }
  2749.  
  2750.   /* If there are no eyes, avoid all contact.  I mean, if there are
  2751.      no debug symbols, then print directly from the msymbol_vector.  */
  2752.  
  2753.   if (found_misc || class != 1)
  2754.     {
  2755.       found_in_file = 0;
  2756.       ALL_MSYMBOLS (objfile, msymbol)
  2757.     {
  2758.       if (MSYMBOL_TYPE (msymbol) == ourtype ||
  2759.           MSYMBOL_TYPE (msymbol) == ourtype2)
  2760.         {
  2761.           if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
  2762.         {
  2763.           /* Functions:  Look up by address. */
  2764.           if (class != 1 ||
  2765.               (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
  2766.             {
  2767.               /* Variables/Absolutes:  Look up by name */
  2768.               if (lookup_symbol (SYMBOL_NAME (msymbol), 
  2769.                      (struct block *) NULL, VAR_NAMESPACE,
  2770.                      0, (struct symtab **) NULL) == NULL)
  2771.             {
  2772.               if (!found_in_file)
  2773.                 {
  2774.                   printf_filtered ("\nNon-debugging symbols:\n");
  2775.                   found_in_file = 1;
  2776.                 }
  2777.               printf_filtered ("    %08lx  %s\n",
  2778.                        (unsigned long) SYMBOL_VALUE_ADDRESS (msymbol),
  2779.                        SYMBOL_SOURCE_NAME (msymbol));
  2780.             }
  2781.             }
  2782.         }
  2783.         }
  2784.     }
  2785.     }
  2786. }
  2787.  
  2788. static void
  2789. variables_info (regexp, from_tty)
  2790.      char *regexp;
  2791.      int from_tty;
  2792. {
  2793.   list_symbols (regexp, 0, 0);
  2794. }
  2795.  
  2796. static void
  2797. functions_info (regexp, from_tty)
  2798.      char *regexp;
  2799.      int from_tty;
  2800. {
  2801.   list_symbols (regexp, 1, 0);
  2802. }
  2803.  
  2804. static void
  2805. types_info (regexp, from_tty)
  2806.      char *regexp;
  2807.      int from_tty;
  2808. {
  2809.   list_symbols (regexp, 2, 0);
  2810. }
  2811.  
  2812. #if 0
  2813. /* Tiemann says: "info methods was never implemented."  */
  2814. static void
  2815. methods_info (regexp)
  2816.      char *regexp;
  2817. {
  2818.   list_symbols (regexp, 3, 0);
  2819. }
  2820. #endif /* 0 */
  2821.  
  2822. /* Breakpoint all functions matching regular expression. */
  2823. static void
  2824. rbreak_command (regexp, from_tty)
  2825.      char *regexp;
  2826.      int from_tty;
  2827. {
  2828.   list_symbols (regexp, 1, 1);
  2829. }
  2830.  
  2831.  
  2832. /* Return Nonzero if block a is lexically nested within block b,
  2833.    or if a and b have the same pc range.
  2834.    Return zero otherwise. */
  2835. int
  2836. contained_in (a, b)
  2837.      struct block *a, *b;
  2838. {
  2839.   if (!a || !b)
  2840.     return 0;
  2841.   return BLOCK_START (a) >= BLOCK_START (b)
  2842.       && BLOCK_END (a)   <= BLOCK_END (b);
  2843. }
  2844.  
  2845.  
  2846. /* Helper routine for make_symbol_completion_list.  */
  2847.  
  2848. static int return_val_size;
  2849. static int return_val_index;
  2850. static char **return_val;
  2851.  
  2852. #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
  2853.   do { \
  2854.     if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
  2855.       /* Put only the mangled name on the list.  */ \
  2856.       /* Advantage:  "b foo<TAB>" completes to "b foo(int, int)" */ \
  2857.       /* Disadvantage:  "b foo__i<TAB>" doesn't complete.  */ \
  2858.       completion_list_add_name \
  2859.     (SYMBOL_DEMANGLED_NAME (symbol), (sym_text), (len), (text), (word)); \
  2860.     else \
  2861.       completion_list_add_name \
  2862.     (SYMBOL_NAME (symbol), (sym_text), (len), (text), (word)); \
  2863.   } while (0)
  2864.  
  2865. /*  Test to see if the symbol specified by SYMNAME (which is already
  2866.     demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
  2867.     characters.  If so, add it to the current completion list. */
  2868.  
  2869. static void
  2870. completion_list_add_name (symname, sym_text, sym_text_len, text, word)
  2871.      char *symname;
  2872.      char *sym_text;
  2873.      int sym_text_len;
  2874.      char *text;
  2875.      char *word;
  2876. {
  2877.   int newsize;
  2878.   int i;
  2879.  
  2880.   /* clip symbols that cannot match */
  2881.  
  2882.   if (strncmp (symname, sym_text, sym_text_len) != 0)
  2883.     {
  2884.       return;
  2885.     }
  2886.  
  2887.   /* Clip any symbol names that we've already considered.  (This is a
  2888.      time optimization)  */
  2889.  
  2890.   for (i = 0; i < return_val_index; ++i)
  2891.     {
  2892.       if (STREQ (symname, return_val[i]))
  2893.     {
  2894.       return;
  2895.     }
  2896.     }
  2897.   
  2898.   /* We have a match for a completion, so add SYMNAME to the current list
  2899.      of matches. Note that the name is moved to freshly malloc'd space. */
  2900.  
  2901.   {
  2902.     char *new;
  2903.     if (word == sym_text)
  2904.       {
  2905.     new = xmalloc (strlen (symname) + 5);
  2906.     strcpy (new, symname);
  2907.       }
  2908.     else if (word > sym_text)
  2909.       {
  2910.     /* Return some portion of symname.  */
  2911.     new = xmalloc (strlen (symname) + 5);
  2912.     strcpy (new, symname + (word - sym_text));
  2913.       }
  2914.     else
  2915.       {
  2916.     /* Return some of SYM_TEXT plus symname.  */
  2917.     new = xmalloc (strlen (symname) + (sym_text - word) + 5);
  2918.     strncpy (new, word, sym_text - word);
  2919.     new[sym_text - word] = '\0';
  2920.     strcat (new, symname);
  2921.       }
  2922.  
  2923.     if (return_val_index + 3 > return_val_size)
  2924.       {
  2925.     newsize = (return_val_size *= 2) * sizeof (char *);
  2926.     return_val = (char **) xrealloc ((char *) return_val, newsize);
  2927.       }
  2928.     return_val[return_val_index++] = new;
  2929.     return_val[return_val_index] = NULL;
  2930.   }
  2931. }
  2932.  
  2933. /* Return a NULL terminated array of all symbols (regardless of class) which
  2934.    begin by matching TEXT.  If the answer is no symbols, then the return value
  2935.    is an array which contains only a NULL pointer.
  2936.  
  2937.    Problem: All of the symbols have to be copied because readline frees them.
  2938.    I'm not going to worry about this; hopefully there won't be that many.  */
  2939.  
  2940. char **
  2941. make_symbol_completion_list (text, word)
  2942.      char *text;
  2943.      char *word;
  2944. {
  2945.   register struct symbol *sym;
  2946.   register struct symtab *s;
  2947.   register struct partial_symtab *ps;
  2948.   register struct minimal_symbol *msymbol;
  2949.   register struct objfile *objfile;
  2950.   register struct block *b, *surrounding_static_block = 0;
  2951.   register int i, j;
  2952.   struct partial_symbol *psym;
  2953.   /* The symbol we are completing on.  Points in same buffer as text.  */
  2954.   char *sym_text;
  2955.   /* Length of sym_text.  */
  2956.   int sym_text_len;
  2957.  
  2958.   /* Now look for the symbol we are supposed to complete on.
  2959.      FIXME: This should be language-specific.  */
  2960.   {
  2961.     char *p;
  2962.     char quote_found;
  2963.     char *quote_pos = NULL;
  2964.  
  2965.     /* First see if this is a quoted string.  */
  2966.     quote_found = '\0';
  2967.     for (p = text; *p != '\0'; ++p)
  2968.       {
  2969.     if (quote_found != '\0')
  2970.       {
  2971.         if (*p == quote_found)
  2972.           /* Found close quote.  */
  2973.           quote_found = '\0';
  2974.         else if (*p == '\\' && p[1] == quote_found)
  2975.           /* A backslash followed by the quote character
  2976.          doesn't end the string.  */
  2977.           ++p;
  2978.       }
  2979.     else if (*p == '\'' || *p == '"')
  2980.       {
  2981.         quote_found = *p;
  2982.         quote_pos = p;
  2983.       }
  2984.       }
  2985.     if (quote_found == '\'')
  2986.       /* A string within single quotes can be a symbol, so complete on it.  */
  2987.       sym_text = quote_pos + 1;
  2988.     else if (quote_found == '"')
  2989.       /* A double-quoted string is never a symbol, nor does it make sense
  2990.      to complete it any other way.  */
  2991.       return NULL;
  2992.     else
  2993.       {
  2994.     /* It is not a quoted string.  Break it based on the characters
  2995.        which are in symbols.  */
  2996.     while (p > text)
  2997.       {
  2998.         if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
  2999.           --p;
  3000.         else
  3001.           break;
  3002.       }
  3003.     sym_text = p;
  3004.       }
  3005.   }
  3006.  
  3007.   sym_text_len = strlen (sym_text);
  3008.  
  3009.   return_val_size = 100;
  3010.   return_val_index = 0;
  3011.   return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
  3012.   return_val[0] = NULL;
  3013.  
  3014.   /* Look through the partial symtabs for all symbols which begin
  3015.      by matching SYM_TEXT.  Add each one that you find to the list.  */
  3016.  
  3017.   ALL_PSYMTABS (objfile, ps)
  3018.     {
  3019.       /* If the psymtab's been read in we'll get it when we search
  3020.      through the blockvector.  */
  3021.       if (ps->readin) continue;
  3022.       
  3023.       for (psym = objfile->global_psymbols.list + ps->globals_offset;
  3024.        psym < (objfile->global_psymbols.list + ps->globals_offset
  3025.            + ps->n_global_syms);
  3026.        psym++)
  3027.     {
  3028.       /* If interrupted, then quit. */
  3029.       QUIT;
  3030.       COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
  3031.     }
  3032.       
  3033.       for (psym = objfile->static_psymbols.list + ps->statics_offset;
  3034.        psym < (objfile->static_psymbols.list + ps->statics_offset
  3035.            + ps->n_static_syms);
  3036.        psym++)
  3037.     {
  3038.       QUIT;
  3039.       COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
  3040.     }
  3041.     }
  3042.  
  3043.   /* At this point scan through the misc symbol vectors and add each
  3044.      symbol you find to the list.  Eventually we want to ignore
  3045.      anything that isn't a text symbol (everything else will be
  3046.      handled by the psymtab code above).  */
  3047.  
  3048.   ALL_MSYMBOLS (objfile, msymbol)
  3049.     {
  3050.       QUIT;
  3051.       COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
  3052.     }
  3053.  
  3054.   /* Search upwards from currently selected frame (so that we can
  3055.      complete on local vars.  */
  3056.  
  3057.   for (b = get_selected_block (); b != NULL; b = BLOCK_SUPERBLOCK (b))
  3058.     {
  3059.       if (!BLOCK_SUPERBLOCK (b))
  3060.     {
  3061.       surrounding_static_block = b;     /* For elmin of dups */
  3062.     }
  3063.       
  3064.       /* Also catch fields of types defined in this places which match our
  3065.      text string.  Only complete on types visible from current context. */
  3066.  
  3067.       for (i = 0; i < BLOCK_NSYMS (b); i++)
  3068.     {
  3069.       sym = BLOCK_SYM (b, i);
  3070.       COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
  3071.       if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
  3072.         {
  3073.           struct type *t = SYMBOL_TYPE (sym);
  3074.           enum type_code c = TYPE_CODE (t);
  3075.  
  3076.           if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
  3077.         {
  3078.           for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
  3079.             {
  3080.               if (TYPE_FIELD_NAME (t, j))
  3081.             {
  3082.               completion_list_add_name (TYPE_FIELD_NAME (t, j),
  3083.                               sym_text, sym_text_len, text, word);
  3084.             }
  3085.             }
  3086.         }
  3087.         }
  3088.     }
  3089.     }
  3090.  
  3091.   /* Go through the symtabs and check the externs and statics for
  3092.      symbols which match.  */
  3093.  
  3094.   ALL_SYMTABS (objfile, s)
  3095.     {
  3096.       QUIT;
  3097.       b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
  3098.       for (i = 0; i < BLOCK_NSYMS (b); i++)
  3099.     {
  3100.       sym = BLOCK_SYM (b, i);
  3101.       COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
  3102.     }
  3103.     }
  3104.  
  3105.   ALL_SYMTABS (objfile, s)
  3106.     {
  3107.       QUIT;
  3108.       b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
  3109.       /* Don't do this block twice.  */
  3110.       if (b == surrounding_static_block) continue;
  3111.       for (i = 0; i < BLOCK_NSYMS (b); i++)
  3112.     {
  3113.       sym = BLOCK_SYM (b, i);
  3114.       COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
  3115.     }
  3116.     }
  3117.  
  3118.   return (return_val);
  3119. }
  3120.  
  3121.  
  3122. #if 0
  3123. /* Add the type of the symbol sym to the type of the current
  3124.    function whose block we are in (assumed).  The type of
  3125.    this current function is contained in *TYPE.
  3126.    
  3127.    This basically works as follows:  When we find a function
  3128.    symbol (N_FUNC with a 'f' or 'F' in the symbol name), we record
  3129.    a pointer to its type in the global in_function_type.  Every 
  3130.    time we come across a parameter symbol ('p' in its name), then
  3131.    this procedure adds the name and type of that parameter
  3132.    to the function type pointed to by *TYPE.  (Which should correspond
  3133.    to in_function_type if it was called correctly).
  3134.  
  3135.    Note that since we are modifying a type, the result of 
  3136.    lookup_function_type() should be memcpy()ed before calling
  3137.    this.  When not in strict typing mode, the expression
  3138.    evaluator can choose to ignore this.
  3139.  
  3140.    Assumption:  All of a function's parameter symbols will
  3141.    appear before another function symbol is found.  The parameters 
  3142.    appear in the same order in the argument list as they do in the
  3143.    symbol table. */
  3144.  
  3145. void
  3146. add_param_to_type (type,sym)
  3147.    struct type **type;
  3148.    struct symbol *sym;
  3149. {
  3150.    int num = ++(TYPE_NFIELDS(*type));
  3151.  
  3152.    if(TYPE_NFIELDS(*type)-1)
  3153.       TYPE_FIELDS(*type) = (struct field *)
  3154.       (*current_objfile->xrealloc) ((char *)(TYPE_FIELDS(*type)),
  3155.                     num*sizeof(struct field));
  3156.    else
  3157.       TYPE_FIELDS(*type) = (struct field *)
  3158.       (*current_objfile->xmalloc) (num*sizeof(struct field));
  3159.    
  3160.    TYPE_FIELD_BITPOS(*type,num-1) = num-1;
  3161.    TYPE_FIELD_BITSIZE(*type,num-1) = 0;
  3162.    TYPE_FIELD_TYPE(*type,num-1) = SYMBOL_TYPE(sym);
  3163.    TYPE_FIELD_NAME(*type,num-1) = SYMBOL_NAME(sym);
  3164. }
  3165. #endif 
  3166.  
  3167. void
  3168. _initialize_symtab ()
  3169. {
  3170.   add_info ("variables", variables_info,
  3171.         "All global and static variable names, or those matching REGEXP.");
  3172.   add_info ("functions", functions_info,
  3173.         "All function names, or those matching REGEXP.");
  3174.  
  3175.   /* FIXME:  This command has at least the following problems:
  3176.      1.  It prints builtin types (in a very strange and confusing fashion).
  3177.      2.  It doesn't print right, e.g. with
  3178.          typedef struct foo *FOO
  3179.      type_print prints "FOO" when we want to make it (in this situation)
  3180.      print "struct foo *".
  3181.      I also think "ptype" or "whatis" is more likely to be useful (but if
  3182.      there is much disagreement "info types" can be fixed).  */
  3183.   add_info ("types", types_info,
  3184.         "All type names, or those matching REGEXP.");
  3185.  
  3186. #if 0
  3187.   add_info ("methods", methods_info,
  3188.         "All method names, or those matching REGEXP::REGEXP.\n\
  3189. If the class qualifier is omitted, it is assumed to be the current scope.\n\
  3190. If the first REGEXP is omitted, then all methods matching the second REGEXP\n\
  3191. are listed.");
  3192. #endif
  3193.   add_info ("sources", sources_info,
  3194.         "Source files in the program.");
  3195.  
  3196.   add_com ("rbreak", no_class, rbreak_command,
  3197.         "Set a breakpoint for all functions matching REGEXP.");
  3198.  
  3199.   /* Initialize the one built-in type that isn't language dependent... */
  3200.   builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
  3201.                   "<unknown type>", (struct objfile *) NULL);
  3202. }
  3203.